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_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_H_ |
6 #define CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_H_ | 6 #define CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <list> | 9 #include <list> |
10 #include <string> | 10 #include <string> |
(...skipping 17 matching lines...) Expand all Loading... |
28 #include "chrome/browser/sync/invalidations/invalidator_storage.h" | 28 #include "chrome/browser/sync/invalidations/invalidator_storage.h" |
29 #include "chrome/browser/sync/profile_sync_service_observer.h" | 29 #include "chrome/browser/sync/profile_sync_service_observer.h" |
30 #include "chrome/browser/sync/sync_prefs.h" | 30 #include "chrome/browser/sync/sync_prefs.h" |
31 #include "chrome/common/net/gaia/google_service_auth_error.h" | 31 #include "chrome/common/net/gaia/google_service_auth_error.h" |
32 #include "content/public/browser/notification_observer.h" | 32 #include "content/public/browser/notification_observer.h" |
33 #include "content/public/browser/notification_registrar.h" | 33 #include "content/public/browser/notification_registrar.h" |
34 #include "content/public/browser/notification_types.h" | 34 #include "content/public/browser/notification_types.h" |
35 #include "googleurl/src/gurl.h" | 35 #include "googleurl/src/gurl.h" |
36 #include "sync/internal_api/public/engine/model_safe_worker.h" | 36 #include "sync/internal_api/public/engine/model_safe_worker.h" |
37 #include "sync/internal_api/public/syncable/model_type.h" | 37 #include "sync/internal_api/public/syncable/model_type.h" |
| 38 #include "sync/internal_api/public/util/experiments.h" |
| 39 #include "sync/internal_api/public/util/unrecoverable_error_handler.h" |
38 #include "sync/js/sync_js_controller.h" | 40 #include "sync/js/sync_js_controller.h" |
39 #include "sync/util/experiments.h" | |
40 #include "sync/util/unrecoverable_error_handler.h" | |
41 | 41 |
42 class Profile; | 42 class Profile; |
43 class ProfileSyncComponentsFactory; | 43 class ProfileSyncComponentsFactory; |
44 class SigninManager; | 44 class SigninManager; |
45 class SyncGlobalError; | 45 class SyncGlobalError; |
46 | 46 |
47 namespace browser_sync { | 47 namespace browser_sync { |
48 class BackendMigrator; | 48 class BackendMigrator; |
49 class ChangeProcessor; | 49 class ChangeProcessor; |
50 class DataTypeManager; | 50 class DataTypeManager; |
(...skipping 719 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
770 browser_sync::Experiments current_experiments; | 770 browser_sync::Experiments current_experiments; |
771 | 771 |
772 DISALLOW_COPY_AND_ASSIGN(ProfileSyncService); | 772 DISALLOW_COPY_AND_ASSIGN(ProfileSyncService); |
773 }; | 773 }; |
774 | 774 |
775 bool ShouldShowActionOnUI( | 775 bool ShouldShowActionOnUI( |
776 const browser_sync::SyncProtocolError& error); | 776 const browser_sync::SyncProtocolError& error); |
777 | 777 |
778 | 778 |
779 #endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_H_ | 779 #endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_H_ |
OLD | NEW |