diff options
author | zork@chromium.org <zork@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-15 17:32:20 +0000 |
---|---|---|
committer | zork@chromium.org <zork@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-15 17:32:20 +0000 |
commit | 44b78f90aa7fb40d6694045f4da76c502dea2272 (patch) | |
tree | 8b2d947065d5b00f5b12a61407134438b7a0446d /chrome/browser/sync/profile_sync_service.h | |
parent | 08b8f440a84673f70cdfbd52d3918c4a31d3ba90 (diff) | |
download | chromium_src-44b78f90aa7fb40d6694045f4da76c502dea2272.zip chromium_src-44b78f90aa7fb40d6694045f4da76c502dea2272.tar.gz chromium_src-44b78f90aa7fb40d6694045f4da76c502dea2272.tar.bz2 |
Fix pieces of syncapi that aren't implemented on Linux.
Review URL: http://codereview.chromium.org/242141
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29134 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/sync/profile_sync_service.h')
-rw-r--r-- | chrome/browser/sync/profile_sync_service.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/chrome/browser/sync/profile_sync_service.h b/chrome/browser/sync/profile_sync_service.h index 011f55f..fab7ea5 100644 --- a/chrome/browser/sync/profile_sync_service.h +++ b/chrome/browser/sync/profile_sync_service.h @@ -144,7 +144,9 @@ class ProfileSyncService : public NotificationObserver, bool SetupInProgress() const { return !HasSyncSetupCompleted() && WizardIsVisible(); } - bool WizardIsVisible() const { return wizard_.IsVisible(); } + bool WizardIsVisible() const { + return wizard_.IsVisible(); + } void ShowLoginDialog(); // Pretty-printed strings for a given StatusSummary. @@ -298,13 +300,13 @@ class ProfileSyncService : public NotificationObserver, // As its name suggests, this should NOT be used for anything other than UI. bool is_auth_in_progress_; + SyncSetupWizard wizard_; + // True if an unrecoverable error (e.g. violation of an assumed invariant) // occurred during syncer operation. This value should be checked before // doing any work that might corrupt things further. bool unrecoverable_error_detected_; - SyncSetupWizard wizard_; - ObserverList<Observer> observers_; DISALLOW_COPY_AND_ASSIGN(ProfileSyncService); |