Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_UTILS_H_ | 5 #ifndef COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_UTILS_H_ |
| 6 #define COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_UTILS_H_ | 6 #define COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_UTILS_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/strings/string16.h" | 11 #include "base/strings/string16.h" |
| 12 #include "base/strings/utf_offset_string_conversions.h" | 12 #include "base/strings/utf_offset_string_conversions.h" |
| 13 #include "components/bookmarks/core/browser/bookmark_node_data.h" | 13 #include "components/bookmarks/core/browser/bookmark_node_data.h" |
| 14 | 14 |
| 15 class BookmarkModel; | 15 class BookmarkModel; |
| 16 class BookmarkNode; | 16 class BookmarkNode; |
| 17 class Profile; | |
|
blundell
2014/05/09 10:02:11
:)
| |
| 18 class GURL; | 17 class GURL; |
| 19 | 18 |
| 20 namespace user_prefs { | 19 namespace user_prefs { |
| 21 class PrefRegistrySyncable; | 20 class PrefRegistrySyncable; |
| 22 } | 21 } |
| 23 | 22 |
| 24 // A collection of bookmark utility functions used by various parts of the UI | 23 // A collection of bookmark utility functions used by various parts of the UI |
| 25 // that show bookmarks (bookmark manager, bookmark bar view, ...) and other | 24 // that show bookmarks (bookmark manager, bookmark bar view, ...) and other |
| 26 // systems that involve indexing and searching bookmarks. | 25 // systems that involve indexing and searching bookmarks. |
| 27 namespace bookmark_utils { | 26 namespace bookmark_utils { |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 136 // Returns the lower-cased title, possibly truncated if the original title | 135 // Returns the lower-cased title, possibly truncated if the original title |
| 137 // is overly-long. | 136 // is overly-long. |
| 138 base::string16 CleanUpTitleForMatching(const base::string16& title); | 137 base::string16 CleanUpTitleForMatching(const base::string16& title); |
| 139 | 138 |
| 140 } // namespace bookmark_utils | 139 } // namespace bookmark_utils |
| 141 | 140 |
| 142 // Returns the node with |id|, or NULL if there is no node with |id|. | 141 // Returns the node with |id|, or NULL if there is no node with |id|. |
| 143 const BookmarkNode* GetBookmarkNodeByID(const BookmarkModel* model, int64 id); | 142 const BookmarkNode* GetBookmarkNodeByID(const BookmarkModel* model, int64 id); |
| 144 | 143 |
| 145 #endif // COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_UTILS_H_ | 144 #endif // COMPONENTS_BOOKMARKS_CORE_BROWSER_BOOKMARK_UTILS_H_ |
| OLD | NEW |