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 | |
8 | 7 |
9 #include <string> | 8 #include <string> |
10 | 9 |
11 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
12 #include "chrome/browser/sync/glue/data_type_controller.h" | 11 #include "chrome/browser/sync/glue/data_type_controller.h" |
13 #include "chrome/browser/sync/glue/data_type_error_handler.h" | 12 #include "chrome/browser/sync/glue/data_type_error_handler.h" |
14 #include "sync/internal_api/public/util/unrecoverable_error_handler.h" | 13 #include "sync/internal_api/public/util/unrecoverable_error_handler.h" |
15 | 14 |
16 class PasswordStore; | 15 class PasswordStore; |
17 class ProfileSyncService; | 16 class ProfileSyncService; |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 virtual SyncComponents CreateTypedUrlSyncComponents( | 102 virtual SyncComponents CreateTypedUrlSyncComponents( |
104 ProfileSyncService* profile_sync_service, | 103 ProfileSyncService* profile_sync_service, |
105 history::HistoryBackend* history_backend, | 104 history::HistoryBackend* history_backend, |
106 browser_sync::DataTypeErrorHandler* error_handler) = 0; | 105 browser_sync::DataTypeErrorHandler* error_handler) = 0; |
107 virtual SyncComponents CreateSessionSyncComponents( | 106 virtual SyncComponents CreateSessionSyncComponents( |
108 ProfileSyncService* profile_sync_service, | 107 ProfileSyncService* profile_sync_service, |
109 browser_sync::DataTypeErrorHandler* error_handler) = 0; | 108 browser_sync::DataTypeErrorHandler* error_handler) = 0; |
110 }; | 109 }; |
111 | 110 |
112 #endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_COMPONENTS_FACTORY_H__ | 111 #endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_COMPONENTS_FACTORY_H__ |
OLD | NEW |