From b155806a6ac802cbe277da4658a92f911d76de01 Mon Sep 17 00:00:00 2001 From: "benjamin%smedbergs.us" Date: Tue, 18 Jul 2006 17:51:26 +0000 Subject: [PATCH] Add support for bookmark separators (bug 320261). r=brettw, ben. Original committer: bryner%brianryner.com Original revision: 1.36 Original date: 2006/02/08 01:10:05 --- .../components/places/public/nsINavHistoryService.idl | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/toolkit/components/places/public/nsINavHistoryService.idl b/toolkit/components/places/public/nsINavHistoryService.idl index a11b6efc800..a4de5d6b681 100644 --- a/toolkit/components/places/public/nsINavHistoryService.idl +++ b/toolkit/components/places/public/nsINavHistoryService.idl @@ -81,6 +81,7 @@ interface nsINavHistoryResultNode : nsISupports const PRUint32 RESULT_TYPE_REMOTE_CONTAINER = 4; // nsINavHistoryContainerResultNode const PRUint32 RESULT_TYPE_QUERY = 5; // nsINavHistoryQueryResultNode const PRUint32 RESULT_TYPE_FOLDER = 6; // nsINavHistoryFolderResultNode + const PRUint32 RESULT_TYPE_SEPARATOR = 7; // nsINavHistoryResultNode readonly attribute PRUint32 type; /** @@ -814,10 +815,10 @@ interface nsINavHistoryQueryOptions : nsISupports attribute PRUint32 resultType; /** - * This option excludes all URIs from a bookmarks query. This would be used - * if you just wanted a list of bookmark folders and queries (such as the left - * pane of the places page). Ignored for queries over history. - * Defaults to false. + * This option excludes all URIs and separators from a bookmarks query. + * This would be used if you just wanted a list of bookmark folders and + * queries (such as the left pane of the places page). + * Ignored for queries over history. Defaults to false. */ attribute boolean excludeItems;