| 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/memory/weak_ptr.h" | 11 #include "base/memory/weak_ptr.h" |
| 12 #include "chrome/browser/sync/glue/data_type_controller.h" | 12 #include "chrome/browser/sync/glue/data_type_controller.h" |
| 13 #include "chrome/browser/sync/glue/data_type_error_handler.h" | 13 #include "chrome/browser/sync/glue/data_type_error_handler.h" |
| 14 #include "sync/util/unrecoverable_error_handler.h" | 14 #include "sync/internal_api/public/util/unrecoverable_error_handler.h" |
| 15 | 15 |
| 16 class PasswordStore; | 16 class PasswordStore; |
| 17 class ProfileSyncService; | 17 class ProfileSyncService; |
| 18 class SyncableService; | 18 class SyncableService; |
| 19 class WebDataService; | 19 class WebDataService; |
| 20 | 20 |
| 21 namespace browser_sync { | 21 namespace browser_sync { |
| 22 class AssociatorInterface; | 22 class AssociatorInterface; |
| 23 class ChangeProcessor; | 23 class ChangeProcessor; |
| 24 class DataTypeManager; | 24 class DataTypeManager; |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 virtual SyncComponents CreateTypedUrlSyncComponents( | 100 virtual SyncComponents CreateTypedUrlSyncComponents( |
| 101 ProfileSyncService* profile_sync_service, | 101 ProfileSyncService* profile_sync_service, |
| 102 history::HistoryBackend* history_backend, | 102 history::HistoryBackend* history_backend, |
| 103 browser_sync::DataTypeErrorHandler* error_handler) = 0; | 103 browser_sync::DataTypeErrorHandler* error_handler) = 0; |
| 104 virtual SyncComponents CreateSessionSyncComponents( | 104 virtual SyncComponents CreateSessionSyncComponents( |
| 105 ProfileSyncService* profile_sync_service, | 105 ProfileSyncService* profile_sync_service, |
| 106 browser_sync::DataTypeErrorHandler* error_handler) = 0; | 106 browser_sync::DataTypeErrorHandler* error_handler) = 0; |
| 107 }; | 107 }; |
| 108 | 108 |
| 109 #endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_COMPONENTS_FACTORY_H__ | 109 #endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_COMPONENTS_FACTORY_H__ |
| OLD | NEW |