HomeSort by relevance Sort by last modified time
    Searched defs:ProfileSyncService (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/sync/
ProfileSyncService.java 24 * Android wrapper of the ProfileSyncService which provides access from the Java layer.
29 * Only usable from the UI thread as the native ProfileSyncService requires its access to be in the
34 public class ProfileSyncService {
41 private static final String TAG = "ProfileSyncService";
46 private static ProfileSyncService sSyncSetupManager;
66 public static ProfileSyncService get(Context context) {
69 sSyncSetupManager = new ProfileSyncService(context);
77 private ProfileSyncService(Context context) {
82 // This may cause us to create ProfileSyncService even if sync has not
83 // been set up, but ProfileSyncService::Startup() won't be called unti
    [all...]
  /external/chromium_org/chrome/browser/sync/
profile_sync_service.cc 123 const char* ProfileSyncService::kSyncServerUrl =
126 const char* ProfileSyncService::kDevServerUrl =
148 // TODO(pavely): crbug.com/246686 ProfileSyncService should retry
188 ProfileSyncService::ProfileSyncService(
224 base::Bind(&ProfileSyncService::StartUpSlowBackendComponents,
230 base::Bind(&ProfileSyncService::StartUpSlowBackendComponents,
233 base::Bind(&ProfileSyncService::StartUpSlowBackendComponents,
248 ProfileSyncService::~ProfileSyncService() {
    [all...]
profile_sync_service.h 93 // ProfileSyncService is the layer between browser subsystems like bookmarks,
152 // The "sync everything" state cannot be read from ProfileSyncService, but
176 class ProfileSyncService : public ProfileSyncServiceBase,
267 ProfileSyncService(
273 virtual ~ProfileSyncService();
316 // TODO(tim): Remove this? Nothing in ProfileSyncService uses it, and outside
333 // ProfileSyncService. It declares that this sync type may be activated at
474 // ProfileSyncService uses this to determine if it's OK to start syncing, or
478 // Called by the UI to notify the ProfileSyncService that UI is visible so it
725 // If true, the ProfileSyncService has detected that a new GAIA signin ha
    [all...]

Completed in 120 milliseconds