| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_HISTORY_CORE_BROWSER_TYPED_URL_DATA_TYPE_CONTROLLER_H__ | 5 #ifndef COMPONENTS_HISTORY_CORE_BROWSER_TYPED_URL_DATA_TYPE_CONTROLLER_H__ |
| 6 #define COMPONENTS_HISTORY_CORE_BROWSER_TYPED_URL_DATA_TYPE_CONTROLLER_H__ | 6 #define COMPONENTS_HISTORY_CORE_BROWSER_TYPED_URL_DATA_TYPE_CONTROLLER_H__ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
| 13 #include "base/prefs/pref_change_registrar.h" |
| 13 #include "base/task/cancelable_task_tracker.h" | 14 #include "base/task/cancelable_task_tracker.h" |
| 14 #include "components/prefs/pref_change_registrar.h" | |
| 15 #include "components/sync_driver/non_ui_data_type_controller.h" | 15 #include "components/sync_driver/non_ui_data_type_controller.h" |
| 16 #include "components/sync_driver/sync_api_component_factory.h" | 16 #include "components/sync_driver/sync_api_component_factory.h" |
| 17 | 17 |
| 18 namespace history { | 18 namespace history { |
| 19 class HistoryBackend; | 19 class HistoryBackend; |
| 20 } | 20 } |
| 21 | 21 |
| 22 namespace browser_sync { | 22 namespace browser_sync { |
| 23 | 23 |
| 24 class ControlTask; | 24 class ControlTask; |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 base::CancelableTaskTracker task_tracker_; | 62 base::CancelableTaskTracker task_tracker_; |
| 63 | 63 |
| 64 sync_driver::SyncClient* const sync_client_; | 64 sync_driver::SyncClient* const sync_client_; |
| 65 | 65 |
| 66 DISALLOW_COPY_AND_ASSIGN(TypedUrlDataTypeController); | 66 DISALLOW_COPY_AND_ASSIGN(TypedUrlDataTypeController); |
| 67 }; | 67 }; |
| 68 | 68 |
| 69 } // namespace browser_sync | 69 } // namespace browser_sync |
| 70 | 70 |
| 71 #endif // COMPONENTS_HISTORY_CORE_BROWSER_TYPED_URL_DATA_TYPE_CONTROLLER_H__ | 71 #endif // COMPONENTS_HISTORY_CORE_BROWSER_TYPED_URL_DATA_TYPE_CONTROLLER_H__ |
| OLD | NEW |