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

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

Issue 2130453004: [Sync] Move //sync to //components/sync. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 4 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 // Various utilities for kicking off sync initialization from data types or 5 // Various utilities for kicking off sync initialization from data types or
6 // other services. 6 // other services.
7 7
8 #ifndef CHROME_BROWSER_SYNC_GLUE_SYNC_START_UTIL_H_ 8 #ifndef CHROME_BROWSER_SYNC_GLUE_SYNC_START_UTIL_H_
9 #define CHROME_BROWSER_SYNC_GLUE_SYNC_START_UTIL_H_ 9 #define CHROME_BROWSER_SYNC_GLUE_SYNC_START_UTIL_H_
10 10
11 #include "sync/api/syncable_service.h" 11 #include "components/sync/api/syncable_service.h"
12 12
13 namespace base { 13 namespace base {
14 class FilePath; 14 class FilePath;
15 } 15 }
16 16
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 // ProfileSyncService it needs sync to start ASAP. Typically this would be 20 // ProfileSyncService it needs sync to start ASAP. Typically this would be
21 // given to the SyncableService on construction. 21 // 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 // |profile_path| is used to get a hold of the actual Profile* once the 26 // |profile_path| is used to get a hold of the actual Profile* once the
27 // request to start sync is safely in UI Thread land. 27 // request to start sync is safely in UI Thread land.
28 syncer::SyncableService::StartSyncFlare GetFlareForSyncableService( 28 syncer::SyncableService::StartSyncFlare GetFlareForSyncableService(
29 const base::FilePath& profile_path); 29 const base::FilePath& profile_path);
30 30
31 } // namespace sync_start_util 31 } // namespace sync_start_util
32 32
33 #endif // CHROME_BROWSER_SYNC_GLUE_SYNC_START_UTIL_H_ 33 #endif // CHROME_BROWSER_SYNC_GLUE_SYNC_START_UTIL_H_
OLDNEW
« no previous file with comments | « chrome/browser/sync/glue/session_sync_test_helper.cc ('k') | chrome/browser/sync/profile_sync_service_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698