Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4179)

Unified Diff: chrome/browser/bookmarks/chrome_bookmark_client.h

Issue 961683002: Move ManagedBookmarksTracker from policy/core/browser to bookmarks/managed (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add back to policy DEPS Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/DEPS ('k') | chrome/browser/bookmarks/chrome_bookmark_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/bookmarks/chrome_bookmark_client.h
diff --git a/chrome/browser/bookmarks/chrome_bookmark_client.h b/chrome/browser/bookmarks/chrome_bookmark_client.h
index 65ec6212d5b567700c72822794182c3509b54f56..e7ae884d4a7fe6974b514caaf7a4e3a331cffa0a 100644
--- a/chrome/browser/bookmarks/chrome_bookmark_client.h
+++ b/chrome/browser/bookmarks/chrome_bookmark_client.h
@@ -13,14 +13,20 @@
#include "base/macros.h"
#include "components/bookmarks/browser/base_bookmark_model_observer.h"
#include "components/bookmarks/browser/bookmark_client.h"
-#include "components/policy/core/browser/managed_bookmarks_tracker.h"
class GURL;
class HistoryServiceFactory;
class Profile;
+namespace base {
+class ListValue;
+}
+
namespace bookmarks {
class BookmarkModel;
+class BookmarkNode;
+class BookmarkPermanentNode;
+class ManagedBookmarksTracker;
}
namespace history {
@@ -107,12 +113,12 @@ class ChromeBookmarkClient : public bookmarks::BookmarkClient,
bookmarks::BookmarkModel* model_;
// Managed bookmarks are defined by an enterprise policy.
- scoped_ptr<policy::ManagedBookmarksTracker> managed_bookmarks_tracker_;
+ scoped_ptr<bookmarks::ManagedBookmarksTracker> managed_bookmarks_tracker_;
// The top-level managed bookmarks folder.
bookmarks::BookmarkPermanentNode* managed_node_;
// Supervised bookmarks are defined by the custodian of a supervised user.
- scoped_ptr<policy::ManagedBookmarksTracker> supervised_bookmarks_tracker_;
+ scoped_ptr<bookmarks::ManagedBookmarksTracker> supervised_bookmarks_tracker_;
// The top-level supervised bookmarks folder.
bookmarks::BookmarkPermanentNode* supervised_node_;
« no previous file with comments | « chrome/browser/DEPS ('k') | chrome/browser/bookmarks/chrome_bookmark_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698