diff options
Diffstat (limited to 'chrome/browser/bookmarks/bookmark_storage.h')
-rw-r--r-- | chrome/browser/bookmarks/bookmark_storage.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/browser/bookmarks/bookmark_storage.h b/chrome/browser/bookmarks/bookmark_storage.h index 61162eb..bb6c0cc 100644 --- a/chrome/browser/bookmarks/bookmark_storage.h +++ b/chrome/browser/bookmarks/bookmark_storage.h @@ -12,6 +12,7 @@ #include "chrome/common/notification_registrar.h" class BookmarkModel; +class BookmarkNode; class Profile; class Task; class Value; @@ -84,6 +85,9 @@ class BookmarkStorage : public NotificationObserver, // Returns the thread the backend is run on. const base::Thread* backend_thread() const { return backend_thread_; } + // Adds node to the model's index, recursing through all children as well. + void AddBookmarksToIndex(BookmarkNode* node); + // Keep the pointer to profile, we may need it for migration from history. Profile* profile_; |