| 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_MANAGED_MANAGED_BOOKMARKS_TRACKER_H_ | 5 #ifndef COMPONENTS_BOOKMARKS_MANAGED_MANAGED_BOOKMARKS_TRACKER_H_ |
| 6 #define COMPONENTS_BOOKMARKS_MANAGED_MANAGED_BOOKMARKS_TRACKER_H_ | 6 #define COMPONENTS_BOOKMARKS_MANAGED_MANAGED_BOOKMARKS_TRACKER_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| 11 #include "base/callback_forward.h" | 11 #include "base/callback_forward.h" |
| 12 #include "base/macros.h" | 12 #include "base/macros.h" |
| 13 #include "base/prefs/pref_change_registrar.h" |
| 13 #include "base/strings/string16.h" | 14 #include "base/strings/string16.h" |
| 14 #include "components/prefs/pref_change_registrar.h" | |
| 15 | 15 |
| 16 class GURL; | 16 class GURL; |
| 17 class PrefService; | 17 class PrefService; |
| 18 | 18 |
| 19 namespace base { | 19 namespace base { |
| 20 class ListValue; | 20 class ListValue; |
| 21 } | 21 } |
| 22 | 22 |
| 23 namespace bookmarks { | 23 namespace bookmarks { |
| 24 | 24 |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 PrefChangeRegistrar registrar_; | 87 PrefChangeRegistrar registrar_; |
| 88 GetManagementDomainCallback get_management_domain_callback_; | 88 GetManagementDomainCallback get_management_domain_callback_; |
| 89 | 89 |
| 90 DISALLOW_COPY_AND_ASSIGN(ManagedBookmarksTracker); | 90 DISALLOW_COPY_AND_ASSIGN(ManagedBookmarksTracker); |
| 91 }; | 91 }; |
| 92 | 92 |
| 93 } // namespace bookmarks | 93 } // namespace bookmarks |
| 94 | 94 |
| 95 #endif // COMPONENTS_BOOKMARKS_MANAGED_MANAGED_BOOKMARKS_TRACKER_H_ | 95 #endif // COMPONENTS_BOOKMARKS_MANAGED_MANAGED_BOOKMARKS_TRACKER_H_ |
| 96 | 96 |
| OLD | NEW |