OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 virtual SyncComponents CreateAutofillProfileSyncComponents( | 42 virtual SyncComponents CreateAutofillProfileSyncComponents( |
43 ProfileSyncService* profile_sync_service, | 43 ProfileSyncService* profile_sync_service, |
44 WebDatabase* web_database, | 44 WebDatabase* web_database, |
45 PersonalDataManager* personal_data, | 45 PersonalDataManager* personal_data, |
46 browser_sync::UnrecoverableErrorHandler* error_handler); | 46 browser_sync::UnrecoverableErrorHandler* error_handler); |
47 | 47 |
48 virtual SyncComponents CreateBookmarkSyncComponents( | 48 virtual SyncComponents CreateBookmarkSyncComponents( |
49 ProfileSyncService* profile_sync_service, | 49 ProfileSyncService* profile_sync_service, |
50 browser_sync::UnrecoverableErrorHandler* error_handler); | 50 browser_sync::UnrecoverableErrorHandler* error_handler); |
51 | 51 |
| 52 virtual SyncComponents CreateExtensionSettingSyncComponents( |
| 53 ProfileSyncService* profile_sync_service, |
| 54 browser_sync::UnrecoverableErrorHandler* error_handler); |
| 55 |
52 virtual SyncComponents CreateExtensionSyncComponents( | 56 virtual SyncComponents CreateExtensionSyncComponents( |
53 ProfileSyncService* profile_sync_service, | 57 ProfileSyncService* profile_sync_service, |
54 browser_sync::UnrecoverableErrorHandler* error_handler); | 58 browser_sync::UnrecoverableErrorHandler* error_handler); |
55 | 59 |
56 virtual SyncComponents CreatePasswordSyncComponents( | 60 virtual SyncComponents CreatePasswordSyncComponents( |
57 ProfileSyncService* profile_sync_service, | 61 ProfileSyncService* profile_sync_service, |
58 PasswordStore* password_store, | 62 PasswordStore* password_store, |
59 browser_sync::UnrecoverableErrorHandler* error_handler); | 63 browser_sync::UnrecoverableErrorHandler* error_handler); |
60 | 64 |
61 virtual SyncComponents CreatePreferenceSyncComponents( | 65 virtual SyncComponents CreatePreferenceSyncComponents( |
(...skipping 18 matching lines...) Expand all Loading... |
80 browser_sync::UnrecoverableErrorHandler* error_handler); | 84 browser_sync::UnrecoverableErrorHandler* error_handler); |
81 | 85 |
82 private: | 86 private: |
83 Profile* profile_; | 87 Profile* profile_; |
84 CommandLine* command_line_; | 88 CommandLine* command_line_; |
85 | 89 |
86 DISALLOW_COPY_AND_ASSIGN(ProfileSyncFactoryImpl); | 90 DISALLOW_COPY_AND_ASSIGN(ProfileSyncFactoryImpl); |
87 }; | 91 }; |
88 | 92 |
89 #endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_FACTORY_IMPL_H__ | 93 #endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_FACTORY_IMPL_H__ |
OLD | NEW |