Index: components/bookmarks/browser/bookmark_client.h |
diff --git a/components/bookmarks/browser/bookmark_client.h b/components/bookmarks/browser/bookmark_client.h |
index 97bb04771919df7d936a6067558c90531bec7010..d597d7662c96c2f97b0dc21daf050667b851c58e 100644 |
--- a/components/bookmarks/browser/bookmark_client.h |
+++ b/components/bookmarks/browser/bookmark_client.h |
@@ -69,18 +69,14 @@ class BookmarkClient { |
// task will be invoked in the Profile's IO task runner. |
virtual bookmarks::LoadExtraCallback GetLoadExtraNodesCallback() = 0; |
- // Checks if the children of the given permanent |node| can be removed from |
- // the bookmark model. |
- virtual bool CanRemovePermanentNodeChildren(const BookmarkNode* node) = 0; |
- |
// Checks if the |permanent_node| can have its title updated. |
virtual bool CanSetPermanentNodeTitle(const BookmarkNode* permanent_node) = 0; |
// Checks if |node| should sync. |
virtual bool CanSyncNode(const BookmarkNode* node) = 0; |
- // Checks if the children of |parent| can be reordered or sorted. |
- virtual bool CanReorderChildren(const BookmarkNode* parent) = 0; |
+ // Checks if this node can be edited by the user. |
sky
2014/06/06 16:29:47
Checks-> Returns true (bonus points if you update
Joao da Silva
2014/06/06 17:46:39
Done.
|
+ virtual bool CanBeEditedByUser(const BookmarkNode* node) = 0; |
protected: |
virtual ~BookmarkClient() {} |