Material PDF: Fix inconsistent behaviour in page selector, update styling
[chromium-blink-merge.git] / google_apis / gaia / gaia_auth_consumer.h
blobb8f70df621b73f07d9ac30167d2b6b4b28477561
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
3 // found in the LICENSE file.
5 #ifndef GOOGLE_APIS_GAIA_GAIA_AUTH_CONSUMER_H_
6 #define GOOGLE_APIS_GAIA_GAIA_AUTH_CONSUMER_H_
8 #include <map>
9 #include <string>
10 #include <vector>
12 class GoogleServiceAuthError;
14 namespace net {
15 typedef std::vector<std::string> ResponseCookies;
18 typedef std::map<std::string, std::string> UserInfoMap;
20 // An interface that defines the callbacks for objects that
21 // GaiaAuthFetcher can return data to.
22 class GaiaAuthConsumer {
23 public:
24 struct ClientLoginResult {
25 ClientLoginResult();
26 ClientLoginResult(const std::string& new_sid,
27 const std::string& new_lsid,
28 const std::string& new_token,
29 const std::string& new_data);
30 ~ClientLoginResult();
32 bool operator==(const ClientLoginResult &b) const;
34 std::string sid;
35 std::string lsid;
36 std::string token;
37 // TODO(chron): Remove the data field later. Don't use it if possible.
38 std::string data; // Full contents of ClientLogin return.
39 bool two_factor; // set to true if there was a TWO_FACTOR "failure".
42 struct ClientOAuthResult {
43 ClientOAuthResult();
44 ClientOAuthResult(const std::string& new_refresh_token,
45 const std::string& new_access_token,
46 int new_expires_in_secs);
47 ~ClientOAuthResult();
49 bool operator==(const ClientOAuthResult &b) const;
51 // OAuth2 refresh token. Used to mint new access tokens when needed.
52 std::string refresh_token;
54 // OAuth2 access token. Token to pass to endpoints that require oauth2
55 // authentication.
56 std::string access_token;
58 // The lifespan of |access_token| in seconds.
59 int expires_in_secs;
62 virtual ~GaiaAuthConsumer() {}
64 virtual void OnClientLoginSuccess(const ClientLoginResult& result) {}
65 virtual void OnClientLoginFailure(const GoogleServiceAuthError& error) {}
67 virtual void OnIssueAuthTokenSuccess(const std::string& service,
68 const std::string& auth_token) {}
69 virtual void OnIssueAuthTokenFailure(const std::string& service,
70 const GoogleServiceAuthError& error) {}
72 virtual void OnClientOAuthSuccess(const ClientOAuthResult& result) {}
73 virtual void OnClientOAuthFailure(const GoogleServiceAuthError& error) {}
75 virtual void OnOAuth2RevokeTokenCompleted() {}
77 virtual void OnGetUserInfoSuccess(const UserInfoMap& data) {}
78 virtual void OnGetUserInfoFailure(const GoogleServiceAuthError& error) {}
80 virtual void OnUberAuthTokenSuccess(const std::string& token) {}
81 virtual void OnUberAuthTokenFailure(const GoogleServiceAuthError& error) {}
83 virtual void OnMergeSessionSuccess(const std::string& data) {}
84 virtual void OnMergeSessionFailure(const GoogleServiceAuthError& error) {}
86 virtual void OnListAccountsSuccess(const std::string& data) {}
87 virtual void OnListAccountsFailure(const GoogleServiceAuthError& error) {}
89 virtual void OnLogOutSuccess() {}
90 virtual void OnLogOutFailure(const GoogleServiceAuthError& error) {}
92 virtual void OnGetCheckConnectionInfoSuccess(const std::string& data) {}
93 virtual void OnGetCheckConnectionInfoError(
94 const GoogleServiceAuthError& error) {}
96 virtual void OnListIdpSessionsSuccess(const std::string& login_hint) {}
97 virtual void OnListIdpSessionsError(const GoogleServiceAuthError& error) {}
99 virtual void OnGetTokenResponseSuccess(const ClientOAuthResult& result) {}
100 virtual void OnGetTokenResponseError(const GoogleServiceAuthError& error) {}
103 #endif // GOOGLE_APIS_GAIA_GAIA_AUTH_CONSUMER_H_