OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 12 matching lines...) Expand all Loading... |
23 #include "chrome/browser/sync/engine/model_safe_worker.h" | 23 #include "chrome/browser/sync/engine/model_safe_worker.h" |
24 #include "chrome/browser/sync/failed_datatypes_handler.h" | 24 #include "chrome/browser/sync/failed_datatypes_handler.h" |
25 #include "chrome/browser/sync/glue/data_type_controller.h" | 25 #include "chrome/browser/sync/glue/data_type_controller.h" |
26 #include "chrome/browser/sync/glue/sync_backend_host.h" | 26 #include "chrome/browser/sync/glue/sync_backend_host.h" |
27 #include "chrome/browser/sync/internal_api/sync_manager.h" | 27 #include "chrome/browser/sync/internal_api/sync_manager.h" |
28 #include "chrome/browser/sync/profile_sync_service_observer.h" | 28 #include "chrome/browser/sync/profile_sync_service_observer.h" |
29 #include "chrome/browser/sync/syncable/model_type.h" | 29 #include "chrome/browser/sync/syncable/model_type.h" |
30 #include "chrome/browser/sync/sync_js_controller.h" | 30 #include "chrome/browser/sync/sync_js_controller.h" |
31 #include "chrome/browser/sync/sync_prefs.h" | 31 #include "chrome/browser/sync/sync_prefs.h" |
32 #include "chrome/browser/sync/sync_setup_wizard.h" | 32 #include "chrome/browser/sync/sync_setup_wizard.h" |
33 #include "chrome/browser/sync/unrecoverable_error_handler.h" | 33 #include "chrome/browser/sync/util/unrecoverable_error_handler.h" |
34 #include "chrome/common/net/gaia/google_service_auth_error.h" | 34 #include "chrome/common/net/gaia/google_service_auth_error.h" |
35 #include "content/public/browser/notification_observer.h" | 35 #include "content/public/browser/notification_observer.h" |
36 #include "content/public/browser/notification_registrar.h" | 36 #include "content/public/browser/notification_registrar.h" |
37 #include "content/public/browser/notification_types.h" | 37 #include "content/public/browser/notification_types.h" |
38 #include "googleurl/src/gurl.h" | 38 #include "googleurl/src/gurl.h" |
39 | 39 |
40 class Profile; | 40 class Profile; |
41 class ProfileSyncComponentsFactory; | 41 class ProfileSyncComponentsFactory; |
42 class SigninManager; | 42 class SigninManager; |
43 class SyncGlobalError; | 43 class SyncGlobalError; |
(...skipping 664 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
708 FailedDatatypesHandler failed_datatypes_handler_; | 708 FailedDatatypesHandler failed_datatypes_handler_; |
709 | 709 |
710 DISALLOW_COPY_AND_ASSIGN(ProfileSyncService); | 710 DISALLOW_COPY_AND_ASSIGN(ProfileSyncService); |
711 }; | 711 }; |
712 | 712 |
713 bool ShouldShowActionOnUI( | 713 bool ShouldShowActionOnUI( |
714 const browser_sync::SyncProtocolError& error); | 714 const browser_sync::SyncProtocolError& error); |
715 | 715 |
716 | 716 |
717 #endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_H_ | 717 #endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_H_ |
OLD | NEW |