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

Side by Side Diff: chrome/browser/chromeos/login/signin/oauth2_login_verifier.h

Issue 2921653004: cros: Remove get user info code from OAuth2LoginManager (Closed)
Patch Set: revise to just clean-up Created 3 years, 6 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 unified diff | Download patch
« no previous file with comments | « chrome/browser/chromeos/login/signin/oauth2_login_manager.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 CHROME_BROWSER_CHROMEOS_LOGIN_SIGNIN_OAUTH2_LOGIN_VERIFIER_H_ 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_SIGNIN_OAUTH2_LOGIN_VERIFIER_H_
6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SIGNIN_OAUTH2_LOGIN_VERIFIER_H_ 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_SIGNIN_OAUTH2_LOGIN_VERIFIER_H_
7 7
8 #include <string> 8 #include <string>
9 #include <utility> 9 #include <utility>
10 #include <vector> 10 #include <vector>
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 void OnAddAccountToCookieCompleted( 56 void OnAddAccountToCookieCompleted(
57 const std::string& account_id, 57 const std::string& account_id,
58 const GoogleServiceAuthError& error) override; 58 const GoogleServiceAuthError& error) override;
59 void OnGaiaAccountsInCookieUpdated( 59 void OnGaiaAccountsInCookieUpdated(
60 const std::vector<gaia::ListedAccount>& accounts, 60 const std::vector<gaia::ListedAccount>& accounts,
61 const std::vector<gaia::ListedAccount>& signed_out_accounts, 61 const std::vector<gaia::ListedAccount>& signed_out_accounts,
62 const GoogleServiceAuthError& error) override; 62 const GoogleServiceAuthError& error) override;
63 63
64 OAuth2LoginVerifier::Delegate* delegate_; 64 OAuth2LoginVerifier::Delegate* delegate_;
65 GaiaCookieManagerService* cookie_manager_service_; 65 GaiaCookieManagerService* cookie_manager_service_;
66 const std::string& primary_account_id_; 66 const std::string primary_account_id_;
67 const std::string access_token_; 67 const std::string access_token_;
68 68
69 DISALLOW_COPY_AND_ASSIGN(OAuth2LoginVerifier); 69 DISALLOW_COPY_AND_ASSIGN(OAuth2LoginVerifier);
70 }; 70 };
71 71
72 } // namespace chromeos 72 } // namespace chromeos
73 73
74 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SIGNIN_OAUTH2_LOGIN_VERIFIER_H_ 74 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_SIGNIN_OAUTH2_LOGIN_VERIFIER_H_
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/signin/oauth2_login_manager.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698