| 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 CHROME_BROWSER_SYNC_PROFILE_SYNC_COMPONENTS_FACTORY_H__ | 5 #ifndef CHROME_BROWSER_SYNC_PROFILE_SYNC_COMPONENTS_FACTORY_H__ |
| 6 #define CHROME_BROWSER_SYNC_PROFILE_SYNC_COMPONENTS_FACTORY_H__ | 6 #define CHROME_BROWSER_SYNC_PROFILE_SYNC_COMPONENTS_FACTORY_H__ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
| 11 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
| 12 #include "components/invalidation/invalidation_service.h" | 12 #include "components/invalidation/invalidation_service.h" |
| 13 #include "components/sync_driver/data_type_controller.h" | 13 #include "components/sync_driver/data_type_controller.h" |
| 14 #include "components/sync_driver/data_type_error_handler.h" | 14 #include "components/sync_driver/data_type_error_handler.h" |
| 15 #include "components/sync_driver/sync_api_component_factory.h" | 15 #include "components/sync_driver/sync_api_component_factory.h" |
| 16 #include "sync/api/sync_merge_result.h" | 16 #include "sync/api/sync_merge_result.h" |
| 17 #include "sync/internal_api/public/util/unrecoverable_error_handler.h" | 17 #include "sync/internal_api/public/util/unrecoverable_error_handler.h" |
| 18 #include "sync/internal_api/public/util/weak_handle.h" | 18 #include "sync/internal_api/public/util/weak_handle.h" |
| 19 | 19 |
| 20 class PasswordStore; | 20 class PasswordStore; |
| 21 class Profile; | 21 class Profile; |
| 22 class ProfileSyncService; | 22 class ProfileSyncService; |
| 23 class WebDataService; | |
| 24 | 23 |
| 25 namespace browser_sync { | 24 namespace browser_sync { |
| 26 class AssociatorInterface; | 25 class AssociatorInterface; |
| 27 class ChangeProcessor; | 26 class ChangeProcessor; |
| 28 class DataTypeEncryptionHandler; | 27 class DataTypeEncryptionHandler; |
| 29 class DataTypeManager; | 28 class DataTypeManager; |
| 30 class DataTypeManagerObserver; | 29 class DataTypeManagerObserver; |
| 31 class FailedDataTypesHandler; | 30 class FailedDataTypesHandler; |
| 32 class GenericChangeProcessor; | 31 class GenericChangeProcessor; |
| 33 class SyncBackendHost; | 32 class SyncBackendHost; |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 102 virtual SyncComponents CreateBookmarkSyncComponents( | 101 virtual SyncComponents CreateBookmarkSyncComponents( |
| 103 ProfileSyncService* profile_sync_service, | 102 ProfileSyncService* profile_sync_service, |
| 104 browser_sync::DataTypeErrorHandler* error_handler) = 0; | 103 browser_sync::DataTypeErrorHandler* error_handler) = 0; |
| 105 virtual SyncComponents CreateTypedUrlSyncComponents( | 104 virtual SyncComponents CreateTypedUrlSyncComponents( |
| 106 ProfileSyncService* profile_sync_service, | 105 ProfileSyncService* profile_sync_service, |
| 107 history::HistoryBackend* history_backend, | 106 history::HistoryBackend* history_backend, |
| 108 browser_sync::DataTypeErrorHandler* error_handler) = 0; | 107 browser_sync::DataTypeErrorHandler* error_handler) = 0; |
| 109 }; | 108 }; |
| 110 | 109 |
| 111 #endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_COMPONENTS_FACTORY_H__ | 110 #endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_COMPONENTS_FACTORY_H__ |
| OLD | NEW |