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

Side by Side Diff: chrome/common/net/gaia/gaia_auth_consumer.h

Issue 9301003: Change X-Auto-Login implementation to use OAuth token. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Copyright. Created 8 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/common/net/gaia/gaia_auth_fetcher.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 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 CHROME_COMMON_NET_GAIA_GAIA_AUTH_CONSUMER_H_ 5 #ifndef CHROME_COMMON_NET_GAIA_GAIA_AUTH_CONSUMER_H_
6 #define CHROME_COMMON_NET_GAIA_GAIA_AUTH_CONSUMER_H_ 6 #define CHROME_COMMON_NET_GAIA_GAIA_AUTH_CONSUMER_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
11 class GoogleServiceAuthError; 11 class GoogleServiceAuthError;
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 virtual void OnOAuthLoginTokenFailure(const GoogleServiceAuthError& error) {} 48 virtual void OnOAuthLoginTokenFailure(const GoogleServiceAuthError& error) {}
49 49
50 virtual void OnGetUserInfoSuccess(const std::string& key, 50 virtual void OnGetUserInfoSuccess(const std::string& key,
51 const std::string& value) {} 51 const std::string& value) {}
52 virtual void OnGetUserInfoKeyNotFound(const std::string& key) {} 52 virtual void OnGetUserInfoKeyNotFound(const std::string& key) {}
53 virtual void OnGetUserInfoFailure(const GoogleServiceAuthError& error) {} 53 virtual void OnGetUserInfoFailure(const GoogleServiceAuthError& error) {}
54 54
55 virtual void OnTokenAuthSuccess(const std::string& data) {} 55 virtual void OnTokenAuthSuccess(const std::string& data) {}
56 virtual void OnTokenAuthFailure(const GoogleServiceAuthError& error) {} 56 virtual void OnTokenAuthFailure(const GoogleServiceAuthError& error) {}
57 57
58 virtual void OnUberAuthTokenSuccess(const std::string& token) {}
59 virtual void OnUberAuthTokenFailure(const GoogleServiceAuthError& error) {}
60
58 virtual void OnMergeSessionSuccess(const std::string& data) {} 61 virtual void OnMergeSessionSuccess(const std::string& data) {}
59 virtual void OnMergeSessionFailure(const GoogleServiceAuthError& error) {} 62 virtual void OnMergeSessionFailure(const GoogleServiceAuthError& error) {}
60 }; 63 };
61 64
62 #endif // CHROME_COMMON_NET_GAIA_GAIA_AUTH_CONSUMER_H_ 65 #endif // CHROME_COMMON_NET_GAIA_GAIA_AUTH_CONSUMER_H_
OLDNEW
« no previous file with comments | « chrome/chrome_tests.gypi ('k') | chrome/common/net/gaia/gaia_auth_fetcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698