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

Side by Side Diff: google_apis/gaia/gaia_auth_consumer.h

Issue 57363003: Enable account reconcilor when --new-profile-management is used. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix unsigned check in tests again Created 7 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef GOOGLE_APIS_GAIA_GAIA_AUTH_CONSUMER_H_ 5 #ifndef GOOGLE_APIS_GAIA_GAIA_AUTH_CONSUMER_H_
6 #define GOOGLE_APIS_GAIA_GAIA_AUTH_CONSUMER_H_ 6 #define GOOGLE_APIS_GAIA_GAIA_AUTH_CONSUMER_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 virtual void OnOAuth2RevokeTokenCompleted() {} 75 virtual void OnOAuth2RevokeTokenCompleted() {}
76 76
77 virtual void OnGetUserInfoSuccess(const UserInfoMap& data) {} 77 virtual void OnGetUserInfoSuccess(const UserInfoMap& data) {}
78 virtual void OnGetUserInfoFailure(const GoogleServiceAuthError& error) {} 78 virtual void OnGetUserInfoFailure(const GoogleServiceAuthError& error) {}
79 79
80 virtual void OnUberAuthTokenSuccess(const std::string& token) {} 80 virtual void OnUberAuthTokenSuccess(const std::string& token) {}
81 virtual void OnUberAuthTokenFailure(const GoogleServiceAuthError& error) {} 81 virtual void OnUberAuthTokenFailure(const GoogleServiceAuthError& error) {}
82 82
83 virtual void OnMergeSessionSuccess(const std::string& data) {} 83 virtual void OnMergeSessionSuccess(const std::string& data) {}
84 virtual void OnMergeSessionFailure(const GoogleServiceAuthError& error) {} 84 virtual void OnMergeSessionFailure(const GoogleServiceAuthError& error) {}
85
86 virtual void OnListAccountsSuccess(const std::string& data) {}
87 virtual void OnListAccountsFailure(const GoogleServiceAuthError& error) {}
85 }; 88 };
86 89
87 #endif // GOOGLE_APIS_GAIA_GAIA_AUTH_CONSUMER_H_ 90 #endif // GOOGLE_APIS_GAIA_GAIA_AUTH_CONSUMER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698