diff options
Diffstat (limited to 'chrome/browser/bookmarks/bookmark_service.h')
-rw-r--r-- | chrome/browser/bookmarks/bookmark_service.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/browser/bookmarks/bookmark_service.h b/chrome/browser/bookmarks/bookmark_service.h index a758382..30387a3 100644 --- a/chrome/browser/bookmarks/bookmark_service.h +++ b/chrome/browser/bookmarks/bookmark_service.h @@ -48,7 +48,9 @@ class BookmarkService { // If not on the main thread you *must* invoke BlockTillLoaded first. virtual bool IsBookmarked(const GURL& url) = 0; - // Returns, by reference in urls, the set of bookmarked urls. + // Returns, by reference in urls, the set of bookmarked urls. This returns + // the unique set of URLs. For example, if two bookmarks reference the same + // URL only one entry is added. // // If not on the main thread you *must* invoke BlockTillLoaded first. virtual void GetBookmarks(std::vector<GURL>* urls) = 0; |