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

Unified Diff: chrome/browser/sync_file_system/drive_backend/sync_engine.h

Issue 502343002: Add account_id to signin manager notifications. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@isauth
Patch Set: Fix android trybots Created 6 years, 4 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_file_system/drive_backend/sync_engine.h
diff --git a/chrome/browser/sync_file_system/drive_backend/sync_engine.h b/chrome/browser/sync_file_system/drive_backend/sync_engine.h
index 29568c6cf5b1b42717c2b9a58cd558291db3b14f..021dab1742ff8d2c78eaca89001a8f36a6a6c6b4 100644
--- a/chrome/browser/sync_file_system/drive_backend/sync_engine.h
+++ b/chrome/browser/sync_file_system/drive_backend/sync_engine.h
@@ -148,9 +148,11 @@ class SyncEngine : public RemoteFileSyncService,
// SigninManagerBase::Observer overrides.
virtual void GoogleSigninFailed(const GoogleServiceAuthError& error) OVERRIDE;
- virtual void GoogleSigninSucceeded(const std::string& username,
+ virtual void GoogleSigninSucceeded(const std::string& account_id,
+ const std::string& username,
const std::string& password) OVERRIDE;
- virtual void GoogleSignedOut(const std::string& username) OVERRIDE;
+ virtual void GoogleSignedOut(const std::string& account_id,
+ const std::string& username) OVERRIDE;
private:
class WorkerObserver;

Powered by Google App Engine
This is Rietveld 408576698