diff options
Diffstat (limited to 'chrome/browser/bookmarks')
-rw-r--r-- | chrome/browser/bookmarks/bookmark_model.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/chrome/browser/bookmarks/bookmark_model.h b/chrome/browser/bookmarks/bookmark_model.h index 6048315..00730d7 100644 --- a/chrome/browser/bookmarks/bookmark_model.h +++ b/chrome/browser/bookmarks/bookmark_model.h @@ -366,6 +366,9 @@ class BookmarkModel : public NotificationObserver, public BookmarkService { // Returns whether the bookmarks file changed externally. bool file_changed() const { return file_changed_; } + // Returns the next node ID. + int64 next_node_id() const { return next_node_id_; } + private: // Used to order BookmarkNodes by URL. class NodeURLComparator { |