| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_SYNC_DRIVER_SYNC_CLIENT_H_ | 5 #ifndef COMPONENTS_SYNC_DRIVER_SYNC_CLIENT_H_ |
| 6 #define COMPONENTS_SYNC_DRIVER_SYNC_CLIENT_H_ | 6 #define COMPONENTS_SYNC_DRIVER_SYNC_CLIENT_H_ |
| 7 | 7 |
| 8 #include "base/callback_forward.h" | 8 #include "base/callback_forward.h" |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| 11 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
| 12 #include "components/sync/base/extensions_activity.h" | 12 #include "components/sync/base/extensions_activity.h" |
| 13 #include "components/sync/base/model_type.h" | 13 #include "components/sync/base/model_type.h" |
| 14 #include "components/sync/driver/sync_api_component_factory.h" | 14 #include "components/sync/driver/sync_api_component_factory.h" |
| 15 #include "components/sync/engine/model_safe_worker.h" | 15 #include "components/sync/engine/model_safe_worker.h" |
| 16 #include "components/sync/model/model_type_sync_bridge.h" | 16 #include "components/sync/model/model_type_sync_bridge.h" |
| 17 | 17 |
| 18 class BookmarkUndoService; | 18 class BookmarkUndoService; |
| 19 class PrefService; | 19 class PrefService; |
| 20 | 20 |
| 21 namespace autofill { | 21 namespace autofill { |
| 22 class AutocompleteSyncableService; | |
| 23 class PersonalDataManager; | 22 class PersonalDataManager; |
| 24 } // namespace autofill | 23 } // namespace autofill |
| 25 | 24 |
| 26 namespace bookmarks { | 25 namespace bookmarks { |
| 27 class BookmarkModel; | 26 class BookmarkModel; |
| 28 } // namespace bookmarks | 27 } // namespace bookmarks |
| 29 | 28 |
| 30 namespace favicon { | 29 namespace favicon { |
| 31 class FaviconService; | 30 class FaviconService; |
| 32 } // namespace favicon | 31 } // namespace favicon |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 // Returns the current SyncApiComponentFactory instance. | 108 // Returns the current SyncApiComponentFactory instance. |
| 110 virtual SyncApiComponentFactory* GetSyncApiComponentFactory() = 0; | 109 virtual SyncApiComponentFactory* GetSyncApiComponentFactory() = 0; |
| 111 | 110 |
| 112 private: | 111 private: |
| 113 DISALLOW_COPY_AND_ASSIGN(SyncClient); | 112 DISALLOW_COPY_AND_ASSIGN(SyncClient); |
| 114 }; | 113 }; |
| 115 | 114 |
| 116 } // namespace syncer | 115 } // namespace syncer |
| 117 | 116 |
| 118 #endif // COMPONENTS_SYNC_DRIVER_SYNC_CLIENT_H_ | 117 #endif // COMPONENTS_SYNC_DRIVER_SYNC_CLIENT_H_ |
| OLD | NEW |