Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(309)

Side by Side Diff: ios/chrome/browser/ui/webui/sync_internals/sync_internals_message_handler.cc

Issue 2345843003: [Sync] Merge //components/browser_sync into one directory. (Closed)
Patch Set: Address comment + rebase. Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ios/chrome/browser/ui/webui/history/browsing_history_handler.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/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/base/weak_handle.h" 12 #include "components/sync/base/weak_handle.h"
13 #include "components/sync/driver/about_sync_util.h" 13 #include "components/sync/driver/about_sync_util.h"
14 #include "components/sync/driver/sync_service.h" 14 #include "components/sync/driver/sync_service.h"
15 #include "components/sync/engine/cycle/commit_counters.h" 15 #include "components/sync/engine/cycle/commit_counters.h"
16 #include "components/sync/engine/cycle/status_counters.h" 16 #include "components/sync/engine/cycle/status_counters.h"
17 #include "components/sync/engine/cycle/update_counters.h" 17 #include "components/sync/engine/cycle/update_counters.h"
18 #include "components/sync/engine/events/protocol_event.h" 18 #include "components/sync/engine/events/protocol_event.h"
19 #include "components/sync/js/js_event_details.h" 19 #include "components/sync/js/js_event_details.h"
20 #include "ios/chrome/browser/browser_state/chrome_browser_state.h" 20 #include "ios/chrome/browser/browser_state/chrome_browser_state.h"
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }
OLDNEW
« no previous file with comments | « ios/chrome/browser/ui/webui/history/browsing_history_handler.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698