| 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 "base/basictypes.h" |
| 8 #include "base/callback_forward.h" | 9 #include "base/callback_forward.h" |
| 9 #include "base/macros.h" | 10 #include "base/macros.h" |
| 10 #include "base/prefs/pref_change_registrar.h" | 11 #include "base/prefs/pref_change_registrar.h" |
| 11 #include "base/strings/string16.h" | 12 #include "base/strings/string16.h" |
| 12 | 13 |
| 13 class GURL; | 14 class GURL; |
| 14 class PrefService; | 15 class PrefService; |
| 15 | 16 |
| 16 namespace base { | 17 namespace base { |
| 17 class ListValue; | 18 class ListValue; |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 PrefChangeRegistrar registrar_; | 85 PrefChangeRegistrar registrar_; |
| 85 GetManagementDomainCallback get_management_domain_callback_; | 86 GetManagementDomainCallback get_management_domain_callback_; |
| 86 | 87 |
| 87 DISALLOW_COPY_AND_ASSIGN(ManagedBookmarksTracker); | 88 DISALLOW_COPY_AND_ASSIGN(ManagedBookmarksTracker); |
| 88 }; | 89 }; |
| 89 | 90 |
| 90 } // namespace bookmarks | 91 } // namespace bookmarks |
| 91 | 92 |
| 92 #endif // COMPONENTS_BOOKMARKS_MANAGED_MANAGED_BOOKMARKS_TRACKER_H_ | 93 #endif // COMPONENTS_BOOKMARKS_MANAGED_MANAGED_BOOKMARKS_TRACKER_H_ |
| 93 | 94 |
| OLD | NEW |