| 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 14 matching lines...) Expand all Loading... |
| 76 browser_sync::UnrecoverableErrorHandler* error_handler); | 80 browser_sync::UnrecoverableErrorHandler* error_handler); |
| 77 | 81 |
| 78 private: | 82 private: |
| 79 Profile* profile_; | 83 Profile* profile_; |
| 80 CommandLine* command_line_; | 84 CommandLine* command_line_; |
| 81 | 85 |
| 82 DISALLOW_COPY_AND_ASSIGN(ProfileSyncFactoryImpl); | 86 DISALLOW_COPY_AND_ASSIGN(ProfileSyncFactoryImpl); |
| 83 }; | 87 }; |
| 84 | 88 |
| 85 #endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_FACTORY_IMPL_H__ | 89 #endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_FACTORY_IMPL_H__ |
| OLD | NEW |