| 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 15 matching lines...) Expand all Loading... |
| 26 #include "chrome/browser/sync/glue/data_type_manager.h" | 26 #include "chrome/browser/sync/glue/data_type_manager.h" |
| 27 #include "chrome/browser/sync/glue/sync_backend_host.h" | 27 #include "chrome/browser/sync/glue/sync_backend_host.h" |
| 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/base/model_type.h" |
| 36 #include "sync/internal_api/public/engine/model_safe_worker.h" | 37 #include "sync/internal_api/public/engine/model_safe_worker.h" |
| 37 #include "sync/internal_api/public/syncable/model_type.h" | |
| 38 #include "sync/internal_api/public/util/experiments.h" | 38 #include "sync/internal_api/public/util/experiments.h" |
| 39 #include "sync/internal_api/public/util/unrecoverable_error_handler.h" | 39 #include "sync/internal_api/public/util/unrecoverable_error_handler.h" |
| 40 #include "sync/js/sync_js_controller.h" | 40 #include "sync/js/sync_js_controller.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 { |
| (...skipping 746 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 794 syncer::Experiments current_experiments; | 794 syncer::Experiments current_experiments; |
| 795 | 795 |
| 796 DISALLOW_COPY_AND_ASSIGN(ProfileSyncService); | 796 DISALLOW_COPY_AND_ASSIGN(ProfileSyncService); |
| 797 }; | 797 }; |
| 798 | 798 |
| 799 bool ShouldShowActionOnUI( | 799 bool ShouldShowActionOnUI( |
| 800 const syncer::SyncProtocolError& error); | 800 const syncer::SyncProtocolError& error); |
| 801 | 801 |
| 802 | 802 |
| 803 #endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_H_ | 803 #endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_H_ |
| OLD | NEW |