diff options
author | rogerta@chromium.org <rogerta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-07 00:03:49 +0000 |
---|---|---|
committer | rogerta@chromium.org <rogerta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-07 00:03:49 +0000 |
commit | 03608d8b532c1eb1d9e8bf2b7f942068d1e322ce (patch) | |
tree | f2f7941d01c711405d8642ef6caad26696dab1a3 /google_apis/gaia/gaia_auth_consumer.h | |
parent | 4ecd01b126c1f85f89ad03a587e9c2d12b088242 (diff) | |
download | chromium_src-03608d8b532c1eb1d9e8bf2b7f942068d1e322ce.zip chromium_src-03608d8b532c1eb1d9e8bf2b7f942068d1e322ce.tar.gz chromium_src-03608d8b532c1eb1d9e8bf2b7f942068d1e322ce.tar.bz2 |
Enable account reconcilor when --new-profile-management is used.
Move mergesession from SigninManager to reconcilor.
Implement ListAccounts.
Start implementing reconcile action, but still a noop for now.
This CL depends on https://codereview.chromium.org/57103002/
Alan: here is an implementation of the ListAccounts. I also added lots of
DVLOG() to the code. Let me know if you'd rather I took those out and put
in a separate CL.
Hui: please review. This CL adds more functionality to the reconcilor but
its still not complete. However, it enables AC behind the flag for merge
session so you don't need to do that manually.
BUG=305249
Review URL: https://codereview.chromium.org/57363003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@233424 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'google_apis/gaia/gaia_auth_consumer.h')
-rw-r--r-- | google_apis/gaia/gaia_auth_consumer.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/google_apis/gaia/gaia_auth_consumer.h b/google_apis/gaia/gaia_auth_consumer.h index 4030336..d5ab306 100644 --- a/google_apis/gaia/gaia_auth_consumer.h +++ b/google_apis/gaia/gaia_auth_consumer.h @@ -82,6 +82,9 @@ class GaiaAuthConsumer { virtual void OnMergeSessionSuccess(const std::string& data) {} virtual void OnMergeSessionFailure(const GoogleServiceAuthError& error) {} + + virtual void OnListAccountsSuccess(const std::string& data) {} + virtual void OnListAccountsFailure(const GoogleServiceAuthError& error) {} }; #endif // GOOGLE_APIS_GAIA_GAIA_AUTH_CONSUMER_H_ |