Index: components/bookmarks/browser/bookmark_utils.h |
diff --git a/components/bookmarks/browser/bookmark_utils.h b/components/bookmarks/browser/bookmark_utils.h |
index 57bd4bb8291bbd78d87a07dcd3fd35bd5715649f..debaba85e751d1b5396fa109c3f9d3d8554062a8 100644 |
--- a/components/bookmarks/browser/bookmark_utils.h |
+++ b/components/bookmarks/browser/bookmark_utils.h |
@@ -23,7 +23,6 @@ class PrefRegistrySyncable; |
// systems that involve indexing and searching bookmarks. |
namespace bookmarks { |
-class BookmarkClient; |
class BookmarkModel; |
class BookmarkNode; |
@@ -139,8 +138,8 @@ base::string16 CleanUpUrlForMatching( |
base::string16 CleanUpTitleForMatching(const base::string16& title); |
// Returns true if all the |nodes| can be edited by the user, |
-// as determined by BookmarkClient::CanBeEditedByUser(). |
-bool CanAllBeEditedByUser(BookmarkClient* client, |
+// as determined by BookmarkModel::CanBeEditedByUser(). |
+bool CanAllBeEditedByUser(BookmarkModel* model, |
const std::vector<const BookmarkNode*>& nodes); |
// Returns true if |url| has a bookmark in the |model| that can be edited |