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

Unified Diff: chrome/browser/sync/profile_sync_service.h

Issue 8383036: Adding parameter to GetStatusLabels to indicate if links are acceptable. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fix following try test. Created 9 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/sync/profile_sync_service.h
diff --git a/chrome/browser/sync/profile_sync_service.h b/chrome/browser/sync/profile_sync_service.h
index 3405764850dda4818fed184b369a137f1165806d..92decd53de515cc80ef81bbc23b1939f60eefced 100644
--- a/chrome/browser/sync/profile_sync_service.h
+++ b/chrome/browser/sync/profile_sync_service.h
@@ -249,9 +249,7 @@ class ProfileSyncService : public browser_sync::SyncFrontend,
browser_sync::SyncBackendHost::StatusSummary QuerySyncStatusSummary();
virtual browser_sync::SyncBackendHost::Status QueryDetailedSyncStatus();
- const GoogleServiceAuthError& GetAuthError() const {
- return last_auth_error_;
- }
+ virtual const GoogleServiceAuthError& GetAuthError() const;
// Displays a dialog for the user to enter GAIA credentials and attempt
// re-authentication, and returns true if it actually opened the dialog.
@@ -303,9 +301,7 @@ class ProfileSyncService : public browser_sync::SyncFrontend,
return unrecoverable_error_location_;
}
- bool UIShouldDepictAuthInProgress() const {
- return is_auth_in_progress_;
- }
+ virtual bool UIShouldDepictAuthInProgress() const;
// Returns true if OnPassphraseRequired has been called for any reason.
virtual bool IsPassphraseRequired() const;

Powered by Google App Engine
This is Rietveld 408576698