OLD | NEW |
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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 | 85 |
86 virtual void OnListAccountsSuccess(const std::string& data) {} | 86 virtual void OnListAccountsSuccess(const std::string& data) {} |
87 virtual void OnListAccountsFailure(const GoogleServiceAuthError& error) {} | 87 virtual void OnListAccountsFailure(const GoogleServiceAuthError& error) {} |
88 | 88 |
89 virtual void OnGetCheckConnectionInfoSuccess(const std::string& data) {} | 89 virtual void OnGetCheckConnectionInfoSuccess(const std::string& data) {} |
90 virtual void OnGetCheckConnectionInfoError( | 90 virtual void OnGetCheckConnectionInfoError( |
91 const GoogleServiceAuthError& error) {} | 91 const GoogleServiceAuthError& error) {} |
| 92 |
| 93 virtual void OnListIdpSessionsSuccess(const std::string& login_hint) {} |
| 94 virtual void OnListIdpSessionsError(const GoogleServiceAuthError& error) {} |
| 95 |
| 96 virtual void OnGetTokenResponseSuccess(const ClientOAuthResult& result) {} |
| 97 virtual void OnGetTokenResponseError(const GoogleServiceAuthError& error) {} |
92 }; | 98 }; |
93 | 99 |
94 #endif // GOOGLE_APIS_GAIA_GAIA_AUTH_CONSUMER_H_ | 100 #endif // GOOGLE_APIS_GAIA_GAIA_AUTH_CONSUMER_H_ |
OLD | NEW |