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_IMPL_H__ | 5 #ifndef CHROME_BROWSER_SYNC_PROFILE_SYNC_COMPONENTS_FACTORY_IMPL_H__ |
6 #define CHROME_BROWSER_SYNC_PROFILE_SYNC_COMPONENTS_FACTORY_IMPL_H__ | 6 #define CHROME_BROWSER_SYNC_PROFILE_SYNC_COMPONENTS_FACTORY_IMPL_H__ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 browser_sync::FailedDataTypesHandler* failed_data_types_handler) | 54 browser_sync::FailedDataTypesHandler* failed_data_types_handler) |
55 OVERRIDE; | 55 OVERRIDE; |
56 | 56 |
57 virtual browser_sync::SyncBackendHost* CreateSyncBackendHost( | 57 virtual browser_sync::SyncBackendHost* CreateSyncBackendHost( |
58 const std::string& name, | 58 const std::string& name, |
59 Profile* profile, | 59 Profile* profile, |
60 invalidation::InvalidationService* invalidator, | 60 invalidation::InvalidationService* invalidator, |
61 const base::WeakPtr<sync_driver::SyncPrefs>& sync_prefs, | 61 const base::WeakPtr<sync_driver::SyncPrefs>& sync_prefs, |
62 const base::FilePath& sync_folder) OVERRIDE; | 62 const base::FilePath& sync_folder) OVERRIDE; |
63 | 63 |
64 virtual scoped_ptr<browser_sync::LocalDeviceInfoProvider> | |
65 CreateLocalDeviceInfoProvider() OVERRIDE; | |
66 | |
67 virtual base::WeakPtr<syncer::SyncableService> GetSyncableServiceForType( | 64 virtual base::WeakPtr<syncer::SyncableService> GetSyncableServiceForType( |
68 syncer::ModelType type) OVERRIDE; | 65 syncer::ModelType type) OVERRIDE; |
69 virtual scoped_ptr<syncer::AttachmentService> CreateAttachmentService( | 66 virtual scoped_ptr<syncer::AttachmentService> CreateAttachmentService( |
70 const syncer::UserShare& user_share, | 67 const syncer::UserShare& user_share, |
71 syncer::AttachmentService::Delegate* delegate) OVERRIDE; | 68 syncer::AttachmentService::Delegate* delegate) OVERRIDE; |
72 | 69 |
73 // Legacy datatypes that need to be converted to the SyncableService API. | 70 // Legacy datatypes that need to be converted to the SyncableService API. |
74 virtual SyncComponents CreateBookmarkSyncComponents( | 71 virtual SyncComponents CreateBookmarkSyncComponents( |
75 ProfileSyncService* profile_sync_service, | 72 ProfileSyncService* profile_sync_service, |
76 browser_sync::DataTypeErrorHandler* error_handler) OVERRIDE; | 73 browser_sync::DataTypeErrorHandler* error_handler) OVERRIDE; |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 const GURL sync_service_url_; | 108 const GURL sync_service_url_; |
112 OAuth2TokenService* const token_service_; | 109 OAuth2TokenService* const token_service_; |
113 net::URLRequestContextGetter* const url_request_context_getter_; | 110 net::URLRequestContextGetter* const url_request_context_getter_; |
114 | 111 |
115 base::WeakPtrFactory<ProfileSyncComponentsFactoryImpl> weak_factory_; | 112 base::WeakPtrFactory<ProfileSyncComponentsFactoryImpl> weak_factory_; |
116 | 113 |
117 DISALLOW_COPY_AND_ASSIGN(ProfileSyncComponentsFactoryImpl); | 114 DISALLOW_COPY_AND_ASSIGN(ProfileSyncComponentsFactoryImpl); |
118 }; | 115 }; |
119 | 116 |
120 #endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_COMPONENTS_FACTORY_IMPL_H__ | 117 #endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_COMPONENTS_FACTORY_IMPL_H__ |
OLD | NEW |