| Index: components/bookmarks/browser/bookmark_utils.h
|
| diff --git a/components/bookmarks/browser/bookmark_utils.h b/components/bookmarks/browser/bookmark_utils.h
|
| index d4c846f96de558365c4982506dd24fa96427b7d3..32dfbe83b9e9285c8a636f7cb6fc1837ddf03742 100644
|
| --- a/components/bookmarks/browser/bookmark_utils.h
|
| +++ b/components/bookmarks/browser/bookmark_utils.h
|
| @@ -16,10 +16,6 @@ class BookmarkModel;
|
| class BookmarkNode;
|
| class GURL;
|
|
|
| -namespace bookmarks {
|
| -class BookmarkClient;
|
| -}
|
| -
|
| namespace user_prefs {
|
| class PrefRegistrySyncable;
|
| }
|
| @@ -27,7 +23,9 @@ class PrefRegistrySyncable;
|
| // A collection of bookmark utility functions used by various parts of the UI
|
| // that show bookmarks (bookmark manager, bookmark bar view, ...) and other
|
| // systems that involve indexing and searching bookmarks.
|
| -namespace bookmark_utils {
|
| +namespace bookmarks {
|
| +
|
| +class BookmarkClient;
|
|
|
| // Fields to use when finding matching bookmarks.
|
| struct QueryFields {
|
| @@ -149,9 +147,9 @@ bool CanAllBeEditedByUser(bookmarks::BookmarkClient* client,
|
| // by the user.
|
| bool IsBookmarkedByUser(BookmarkModel* model, const GURL& url);
|
|
|
| -} // namespace bookmark_utils
|
| -
|
| // Returns the node with |id|, or NULL if there is no node with |id|.
|
| const BookmarkNode* GetBookmarkNodeByID(const BookmarkModel* model, int64 id);
|
|
|
| +} // namespace bookmarks
|
| +
|
| #endif // COMPONENTS_BOOKMARKS_BROWSER_BOOKMARK_UTILS_H_
|
|
|