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

  /external/chromium/chrome/browser/sync/
profile_sync_service.cc 59 const char* ProfileSyncService::kSyncServerUrl =
62 const char* ProfileSyncService::kDevServerUrl =
67 ProfileSyncService::ProfileSyncService(ProfileSyncFactory* factory,
109 ProfileSyncService::~ProfileSyncService() {
113 bool ProfileSyncService::AreCredentialsAvailable() {
130 void ProfileSyncService::Initialize() {
174 void ProfileSyncService::RegisterAuthNotifications() {
189 void ProfileSyncService::RegisterDataTypeController
    [all...]
profile_sync_service.h 58 // ProfileSyncService is the layer between browser subsystems like bookmarks,
100 class ProfileSyncService : public browser_sync::SyncFrontend,
143 ProfileSyncService(ProfileSyncFactory* factory_,
146 virtual ~ProfileSyncService();
236 // occurred preventing the action. We make it the duty of ProfileSyncService
307 // Adds/removes an observer. ProfileSyncService does not take ownership of
462 // Used by test classes that derive from ProfileSyncService.
595 ScopedRunnableMethodFactory<ProfileSyncService>
639 base::OneShotTimer<ProfileSyncService> clear_server_data_timer_;
647 DISALLOW_COPY_AND_ASSIGN(ProfileSyncService);
    [all...]
  /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.h 75 // ProfileSyncService is the layer between browser subsystems like bookmarks,
134 // The "sync everything" state cannot be read from ProfileSyncService, but
158 class ProfileSyncService : public ProfileSyncServiceBase,
224 ProfileSyncService(ProfileSyncComponentsFactory* factory,
228 virtual ~ProfileSyncService();
356 // ProfileSyncService uses this to determine if it's OK to start syncing, or
360 // Called by the UI to notify the ProfileSyncService that UI is visible so it
592 // If true, the ProfileSyncService has detected that a new GAIA signin has
630 // Used by test classes that derive from ProfileSyncService.
719 // During initial signin, ProfileSyncService caches the user's signi
    [all...]
profile_sync_service.cc 106 const char* ProfileSyncService::kSyncServerUrl =
109 const char* ProfileSyncService::kDevServerUrl =
133 // TODO(pavely): crbug.com/246686 ProfileSyncService should retry
152 ProfileSyncService::ProfileSyncService(ProfileSyncComponentsFactory* factory,
193 ProfileSyncService::~ProfileSyncService() {
199 bool ProfileSyncService::IsSyncEnabledAndLoggedIn() {
208 bool ProfileSyncService::IsOAuthRefreshTokenAvailable() {
227 void ProfileSyncService::Initialize()
    [all...]

Completed in 291 milliseconds