| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 #include "ios/chrome/browser/ui/webui/sync_internals/sync_internals_message_hand
ler.h" | 5 #include "ios/chrome/browser/ui/webui/sync_internals/sync_internals_message_hand
ler.h" |
| 6 | 6 |
| 7 #include <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "components/browser_sync/browser/profile_sync_service.h" | 10 #include "components/browser_sync/browser/profile_sync_service.h" |
| 11 #include "components/signin/core/browser/signin_manager.h" | 11 #include "components/signin/core/browser/signin_manager.h" |
| 12 #include "components/sync_driver/about_sync_util.h" | 12 #include "components/sync_driver/about_sync_util.h" |
| 13 #include "components/sync_driver/sync_service.h" | 13 #include "components/sync_driver/sync_service.h" |
| 14 #include "ios/chrome/browser/browser_state/chrome_browser_state.h" |
| 14 #include "ios/chrome/browser/signin/signin_manager_factory.h" | 15 #include "ios/chrome/browser/signin/signin_manager_factory.h" |
| 15 #include "ios/chrome/browser/sync/ios_chrome_profile_sync_service_factory.h" | 16 #include "ios/chrome/browser/sync/ios_chrome_profile_sync_service_factory.h" |
| 16 #include "ios/chrome/common/channel_info.h" | 17 #include "ios/chrome/common/channel_info.h" |
| 17 #include "ios/public/provider/chrome/browser/browser_state/chrome_browser_state.
h" | |
| 18 #include "ios/public/provider/web/web_ui_ios.h" | 18 #include "ios/public/provider/web/web_ui_ios.h" |
| 19 #include "ios/web/public/web_thread.h" | 19 #include "ios/web/public/web_thread.h" |
| 20 #include "sync/internal_api/public/events/protocol_event.h" | 20 #include "sync/internal_api/public/events/protocol_event.h" |
| 21 #include "sync/internal_api/public/sessions/commit_counters.h" | 21 #include "sync/internal_api/public/sessions/commit_counters.h" |
| 22 #include "sync/internal_api/public/sessions/status_counters.h" | 22 #include "sync/internal_api/public/sessions/status_counters.h" |
| 23 #include "sync/internal_api/public/sessions/update_counters.h" | 23 #include "sync/internal_api/public/sessions/update_counters.h" |
| 24 #include "sync/internal_api/public/util/weak_handle.h" | 24 #include "sync/internal_api/public/util/weak_handle.h" |
| 25 #include "sync/js/js_event_details.h" | 25 #include "sync/js/js_event_details.h" |
| 26 | 26 |
| 27 using syncer::JsEventDetails; | 27 using syncer::JsEventDetails; |
| (...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 *value); | 228 *value); |
| 229 } | 229 } |
| 230 | 230 |
| 231 // Gets the SyncService of the underlying original profile. May return null. | 231 // Gets the SyncService of the underlying original profile. May return null. |
| 232 sync_driver::SyncService* SyncInternalsMessageHandler::GetSyncService() { | 232 sync_driver::SyncService* SyncInternalsMessageHandler::GetSyncService() { |
| 233 ios::ChromeBrowserState* browser_state = | 233 ios::ChromeBrowserState* browser_state = |
| 234 ios::ChromeBrowserState::FromWebUIIOS(web_ui()); | 234 ios::ChromeBrowserState::FromWebUIIOS(web_ui()); |
| 235 return IOSChromeProfileSyncServiceFactory::GetForBrowserState( | 235 return IOSChromeProfileSyncServiceFactory::GetForBrowserState( |
| 236 browser_state->GetOriginalChromeBrowserState()); | 236 browser_state->GetOriginalChromeBrowserState()); |
| 237 } | 237 } |
| OLD | NEW |