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

Side by Side Diff: ios/chrome/browser/sync/glue/sync_start_util.h

Issue 2388673002: Revert of [Sync] Move //components/sync to the syncer namespace. (patchset #5 id:40001 of https://co (Closed)
Patch Set: Created 4 years, 2 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
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 #ifndef IOS_CHROME_BROWSER_SYNC_GLUE_SYNC_START_UTIL_H_ 5 #ifndef IOS_CHROME_BROWSER_SYNC_GLUE_SYNC_START_UTIL_H_
6 #define IOS_CHROME_BROWSER_SYNC_GLUE_SYNC_START_UTIL_H_ 6 #define IOS_CHROME_BROWSER_SYNC_GLUE_SYNC_START_UTIL_H_
7 7
8 #include "components/sync/api/syncable_service.h" 8 #include "components/sync/api/syncable_service.h"
9 9
10 namespace base { 10 namespace base {
11 class FilePath; 11 class FilePath;
12 } 12 }
13 13
14 // Various utilities for kicking off sync initialization from data types or 14 // Various utilities for kicking off sync initialization from data types or
15 // other services. 15 // other services.
16 namespace ios { 16 namespace ios {
17 namespace sync_start_util { 17 namespace sync_start_util {
18 18
19 // Creates a StartSyncFlare that a SyncableService can use to tell 19 // Creates a StartSyncFlare that a SyncableService can use to tell
20 // syncer::SyncService it needs sync to start ASAP. Typically this would 20 // sync_driver::SyncService it needs sync to start ASAP. Typically this would
21 // be given to the SyncableService on construction. 21 // be given to the SyncableService on construction.
22 // 22 //
23 // The flare built by this function is designed to be Run()able from any thread 23 // The flare built by this function is designed to be Run()able from any thread
24 // so that non-UI types don't have to deal with posting tasks. 24 // so that non-UI types don't have to deal with posting tasks.
25 // 25 //
26 // |browser_state_path| is used to get a hold of the actual ChromeBrowserState* 26 // |browser_state_path| is used to get a hold of the actual ChromeBrowserState*
27 // once the request to start sync is safely in UI Thread land. 27 // once the request to start sync is safely in UI Thread land.
28 syncer::SyncableService::StartSyncFlare GetFlareForSyncableService( 28 syncer::SyncableService::StartSyncFlare GetFlareForSyncableService(
29 const base::FilePath& browser_state_path); 29 const base::FilePath& browser_state_path);
30 30
31 } // namespace sync_start_util 31 } // namespace sync_start_util
32 } // namespace ios 32 } // namespace ios
33 33
34 #endif // IOS_CHROME_BROWSER_SYNC_GLUE_SYNC_START_UTIL_H_ 34 #endif // IOS_CHROME_BROWSER_SYNC_GLUE_SYNC_START_UTIL_H_
OLDNEW
« no previous file with comments | « ios/chrome/browser/sync/fake_sync_service_factory.cc ('k') | ios/chrome/browser/sync/glue/sync_start_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698