Work-in-progress for places UI. Allow the backend to filter results based on item type, and provide a way to ask for a result rooted at a given bookmark folder. NPOB, will be reviewed by ben/brettw before being turned on.

Original committer: bryner%brianryner.com
Original revision: 1.4
Original date: 2005/11/19 00:08:59


git-svn-id: svn://10.0.0.236/trunk@202850 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
benjamin%smedbergs.us
2006-07-18 17:38:48 +00:00
parent 40774f628e
commit dc86520e1a

View File

@@ -64,6 +64,12 @@ interface nsINavHistoryResultNode : nsISupports
*/
readonly attribute AUTF8String url;
/**
* ID of the folder corresponding to this node.
* Only valid for RESULT_TYPE_FOLDER nodes, 0 for all other types.
*/
readonly attribute PRInt64 folderId;
/**
* Title of the web page, or name of the host.
*/
@@ -304,6 +310,12 @@ interface nsINavHistoryQuery : nsISupports
*/
attribute AString domain;
readonly attribute boolean hasDomain;
/**
* Limit results to items that are in all of the given folders.
*/
// void setFolders([const,array, size_is(folderCount)] in PRInt64 folders,
// in PRUint32 folderCount);
};
/**