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/public/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; |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 virtual SyncComponents CreateBookmarkSyncComponents( | 105 virtual SyncComponents CreateBookmarkSyncComponents( |
106 ProfileSyncService* profile_sync_service, | 106 ProfileSyncService* profile_sync_service, |
107 sync_driver::DataTypeErrorHandler* error_handler) = 0; | 107 sync_driver::DataTypeErrorHandler* error_handler) = 0; |
108 virtual SyncComponents CreateTypedUrlSyncComponents( | 108 virtual SyncComponents CreateTypedUrlSyncComponents( |
109 ProfileSyncService* profile_sync_service, | 109 ProfileSyncService* profile_sync_service, |
110 history::HistoryBackend* history_backend, | 110 history::HistoryBackend* history_backend, |
111 sync_driver::DataTypeErrorHandler* error_handler) = 0; | 111 sync_driver::DataTypeErrorHandler* error_handler) = 0; |
112 }; | 112 }; |
113 | 113 |
114 #endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_COMPONENTS_FACTORY_H__ | 114 #endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_COMPONENTS_FACTORY_H__ |
OLD | NEW |