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

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

Issue 14018026: sync: SyncableService support for starting sync (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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 | Annotate | Revision Log
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4 //
5 // Various utilities for kicking off sync initialization from data types or
6 // other services.
7
8 #ifndef CHROME_BROWSER_SYNC_GLUE_SYNC_START_UTIL_H_
9 #define CHROME_BROWSER_SYNC_GLUE_SYNC_START_UTIL_H_
10
11 #include "base/files/file_path.h"
12 #include "sync/api/syncable_service.h"
13
14 namespace sync_start_util {
15 // Creates a StartSyncFlare that a SyncableService can use to tell
16 // ProfileSyncService it needs sync to start ASAP. Typically this would be
haitaol1 2013/04/25 19:18:18 dup "would be"
tim (not reviewing) 2013/05/01 21:19:47 Done.
17 // would be given to the SyncableService via InjectStartSyncFlare.
18 //
19 // The flare is designed to be Run()able from any thread so that non-
20 // frontend types don't have to deal with posting tasks.
21 //
22 // |profile_path| is used to get a hold of the actual Profile* once the
23 // request to start sync is safely in UI Thread land.
24 syncer::StartSyncFlare GetFlareForSyncableService(
25 const base::FilePath& profile_path);
26 };
27
28 #endif // CHROME_BROWSER_SYNC_GLUE_SYNC_START_UTIL_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/sync/glue/sync_start_util.cc » ('j') | chrome/browser/sync/profile_sync_service.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698