From 30e3e0d0bbb45231142d5c6b2e280500b29ffa8c Mon Sep 17 00:00:00 2001 From: "benjamin%smedbergs.us" Date: Tue, 18 Jul 2006 17:42:38 +0000 Subject: [PATCH] more work on selection saving across view reloading, also as part of 317633 store txmgr on history service for global txn stack. r=brettw for that NPOB Original committer: beng%bengoodger.com Original revision: 1.14 Original date: 2005/12/01 00:09:28 --- toolkit/components/places/public/nsINavHistoryService.idl | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/toolkit/components/places/public/nsINavHistoryService.idl b/toolkit/components/places/public/nsINavHistoryService.idl index 86179b245f1e..3f8f964e43b6 100644 --- a/toolkit/components/places/public/nsINavHistoryService.idl +++ b/toolkit/components/places/public/nsINavHistoryService.idl @@ -42,6 +42,7 @@ interface nsINavHistoryQuery; interface nsINavHistoryQueryOptions; +interface nsITransactionManager; interface nsITreeColumn; [scriptable, uuid(acae2b2d-5fcd-4419-b1bc-b7dc92a1836c)] @@ -634,4 +635,10 @@ interface nsINavHistory : nsISupports * done changing. Should match beginUpdateBatch or bad things will happen. */ void endUpdateBatch(); + + /** + * The Transaction Manager for edit operations performed on History and + * Bookmark items. + */ + readonly attribute nsITransactionManager transactionManager; };