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

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

Issue 7600003: Pre- and Auto-login should not log the user out of an already signed in (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Add test source code file to CL Created 9 years, 4 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
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 virtual void OnIssueAuthTokenFailure(const std::string& service, 42 virtual void OnIssueAuthTokenFailure(const std::string& service,
43 const GoogleServiceAuthError& error) {} 43 const GoogleServiceAuthError& error) {}
44 44
45 virtual void OnGetUserInfoSuccess(const std::string& key, 45 virtual void OnGetUserInfoSuccess(const std::string& key,
46 const std::string& value) {} 46 const std::string& value) {}
47 virtual void OnGetUserInfoKeyNotFound(const std::string& key) {} 47 virtual void OnGetUserInfoKeyNotFound(const std::string& key) {}
48 virtual void OnGetUserInfoFailure(const GoogleServiceAuthError& error) {} 48 virtual void OnGetUserInfoFailure(const GoogleServiceAuthError& error) {}
49 49
50 virtual void OnTokenAuthSuccess(const std::string& data) {} 50 virtual void OnTokenAuthSuccess(const std::string& data) {}
51 virtual void OnTokenAuthFailure(const GoogleServiceAuthError& error) {} 51 virtual void OnTokenAuthFailure(const GoogleServiceAuthError& error) {}
52
53 virtual void OnMergeSessionSuccess(const std::string& data) {}
54 virtual void OnMergeSessionFailure(const GoogleServiceAuthError& error) {}
52 }; 55 };
53 56
54 #endif // CHROME_COMMON_NET_GAIA_GAIA_AUTH_CONSUMER_H_ 57 #endif // CHROME_COMMON_NET_GAIA_GAIA_AUTH_CONSUMER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698