| 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 COMPONENTS_BROWSER_SYNC_PROFILE_SYNC_SERVICE_H_ | 5 #ifndef COMPONENTS_BROWSER_SYNC_PROFILE_SYNC_SERVICE_H_ |
| 6 #define COMPONENTS_BROWSER_SYNC_PROFILE_SYNC_SERVICE_H_ | 6 #define COMPONENTS_BROWSER_SYNC_PROFILE_SYNC_SERVICE_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 | 70 |
| 71 namespace syncer { | 71 namespace syncer { |
| 72 class BackendMigrator; | 72 class BackendMigrator; |
| 73 class BaseTransaction; | 73 class BaseTransaction; |
| 74 class DataTypeManager; | 74 class DataTypeManager; |
| 75 class DeviceInfoSyncBridge; | 75 class DeviceInfoSyncBridge; |
| 76 class DeviceInfoSyncService; | 76 class DeviceInfoSyncService; |
| 77 class DeviceInfoTracker; | 77 class DeviceInfoTracker; |
| 78 class LocalDeviceInfoProvider; | 78 class LocalDeviceInfoProvider; |
| 79 class NetworkResources; | 79 class NetworkResources; |
| 80 class SyncApiComponentFactory; | |
| 81 class SyncClient; | 80 class SyncClient; |
| 82 class SyncErrorController; | 81 class SyncErrorController; |
| 83 class SyncTypePreferenceProvider; | 82 class SyncTypePreferenceProvider; |
| 84 class TypeDebugInfoObserver; | 83 class TypeDebugInfoObserver; |
| 85 struct CommitCounters; | 84 struct CommitCounters; |
| 86 struct StatusCounters; | 85 struct StatusCounters; |
| 87 struct SyncCredentials; | 86 struct SyncCredentials; |
| 88 struct UpdateCounters; | 87 struct UpdateCounters; |
| 89 struct UserShare; | 88 struct UserShare; |
| 90 } // namespace syncer | 89 } // namespace syncer |
| (...skipping 912 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1003 base::WeakPtrFactory<ProfileSyncService> weak_factory_; | 1002 base::WeakPtrFactory<ProfileSyncService> weak_factory_; |
| 1004 | 1003 |
| 1005 DISALLOW_COPY_AND_ASSIGN(ProfileSyncService); | 1004 DISALLOW_COPY_AND_ASSIGN(ProfileSyncService); |
| 1006 }; | 1005 }; |
| 1007 | 1006 |
| 1008 bool ShouldShowActionOnUI(const syncer::SyncProtocolError& error); | 1007 bool ShouldShowActionOnUI(const syncer::SyncProtocolError& error); |
| 1009 | 1008 |
| 1010 } // namespace browser_sync | 1009 } // namespace browser_sync |
| 1011 | 1010 |
| 1012 #endif // COMPONENTS_BROWSER_SYNC_PROFILE_SYNC_SERVICE_H_ | 1011 #endif // COMPONENTS_BROWSER_SYNC_PROFILE_SYNC_SERVICE_H_ |
| OLD | NEW |