OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_FACTORY_IMPL_H__ | 5 #ifndef CHROME_BROWSER_SYNC_PROFILE_SYNC_FACTORY_IMPL_H__ |
6 #define CHROME_BROWSER_SYNC_PROFILE_SYNC_FACTORY_IMPL_H__ | 6 #define CHROME_BROWSER_SYNC_PROFILE_SYNC_FACTORY_IMPL_H__ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
(...skipping 19 matching lines...) Expand all Loading... |
30 virtual SyncComponents CreateAppSyncComponents( | 30 virtual SyncComponents CreateAppSyncComponents( |
31 ProfileSyncService* profile_sync_service, | 31 ProfileSyncService* profile_sync_service, |
32 browser_sync::UnrecoverableErrorHandler* error_handler); | 32 browser_sync::UnrecoverableErrorHandler* error_handler); |
33 | 33 |
34 virtual SyncComponents CreateAutofillSyncComponents( | 34 virtual SyncComponents CreateAutofillSyncComponents( |
35 ProfileSyncService* profile_sync_service, | 35 ProfileSyncService* profile_sync_service, |
36 WebDatabase* web_database, | 36 WebDatabase* web_database, |
37 PersonalDataManager* personal_data, | 37 PersonalDataManager* personal_data, |
38 browser_sync::UnrecoverableErrorHandler* error_handler); | 38 browser_sync::UnrecoverableErrorHandler* error_handler); |
39 | 39 |
| 40 virtual SyncComponents CreateAutofillProfileSyncComponents( |
| 41 ProfileSyncService* profile_sync_service, |
| 42 WebDatabase* web_database, |
| 43 PersonalDataManager* personal_data, |
| 44 browser_sync::UnrecoverableErrorHandler* error_handler); |
| 45 |
40 virtual SyncComponents CreateBookmarkSyncComponents( | 46 virtual SyncComponents CreateBookmarkSyncComponents( |
41 ProfileSyncService* profile_sync_service, | 47 ProfileSyncService* profile_sync_service, |
42 browser_sync::UnrecoverableErrorHandler* error_handler); | 48 browser_sync::UnrecoverableErrorHandler* error_handler); |
43 | 49 |
44 virtual SyncComponents CreateExtensionSyncComponents( | 50 virtual SyncComponents CreateExtensionSyncComponents( |
45 ProfileSyncService* profile_sync_service, | 51 ProfileSyncService* profile_sync_service, |
46 browser_sync::UnrecoverableErrorHandler* error_handler); | 52 browser_sync::UnrecoverableErrorHandler* error_handler); |
47 | 53 |
48 virtual SyncComponents CreatePasswordSyncComponents( | 54 virtual SyncComponents CreatePasswordSyncComponents( |
49 ProfileSyncService* profile_sync_service, | 55 ProfileSyncService* profile_sync_service, |
(...skipping 18 matching lines...) Expand all Loading... |
68 browser_sync::UnrecoverableErrorHandler* error_handler); | 74 browser_sync::UnrecoverableErrorHandler* error_handler); |
69 | 75 |
70 private: | 76 private: |
71 Profile* profile_; | 77 Profile* profile_; |
72 CommandLine* command_line_; | 78 CommandLine* command_line_; |
73 | 79 |
74 DISALLOW_COPY_AND_ASSIGN(ProfileSyncFactoryImpl); | 80 DISALLOW_COPY_AND_ASSIGN(ProfileSyncFactoryImpl); |
75 }; | 81 }; |
76 | 82 |
77 #endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_FACTORY_IMPL_H__ | 83 #endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_FACTORY_IMPL_H__ |
OLD | NEW |