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

Unified Diff: chrome/browser/chromeos/login/oauth_login_manager.h

Issue 12704002: Support for auth code based authentication flow for both app and web UI driven flow. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase4 Created 7 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/login/oauth_login_manager.h
diff --git a/chrome/browser/chromeos/login/oauth_login_manager.h b/chrome/browser/chromeos/login/oauth_login_manager.h
index 211d615274205360754fc1f5af04df1a8077bcfe..6989fafd1abfcccf496c0e764ea2ee020eb67e6c 100644
--- a/chrome/browser/chromeos/login/oauth_login_manager.h
+++ b/chrome/browser/chromeos/login/oauth_login_manager.h
@@ -5,6 +5,8 @@
#ifndef CHROME_BROWSER_CHROMEOS_LOGIN_OAUTH_LOGIN_MANAGER_H_
#define CHROME_BROWSER_CHROMEOS_LOGIN_OAUTH_LOGIN_MANAGER_H_
+#include <string>
+
#include "base/memory/ref_counted.h"
#include "net/url_request/url_request_context_getter.h"
@@ -26,6 +28,19 @@ class OAuthLoginManager {
SESSION_RESTORE_DONE,
};
+ // Session restore strategy.
+ enum SessionRestoreStrategy {
+ // Generate OAuth2 refresh token from authentication profile's cookie jar.
+ // Restore session from generated OAuth2 refresh token.
+ RESTORE_FROM_COOKIE_JAR,
+ // Restore session from saved OAuth2 refresh token from TokenServices.
+ RESTORE_FROM_SAVED_OAUTH2_REFRESH_TOKEN,
+ // Restore session from OAuth2 refresh token passed via command line.
+ RESTORE_FROM_PASSED_OAUTH2_REFRESH_TOKEN,
+ // Restore session from authentication code passed via command line.
+ RESTORE_FROM_AUTH_CODE,
+ };
+
class Delegate {
public:
virtual ~Delegate() {}
@@ -54,12 +69,18 @@ class OAuthLoginManager {
virtual void RestorePolicyTokens(
net::URLRequestContextGetter* auth_request_context) = 0;
- // Restores and verifies OAuth tokens either from TokenService or previously
- // authenticated cookie jar.
+ // Restores and verifies OAuth tokens either following specified
+ // |restore_strategy|. For |restore_strategy| with values
+ // RESTORE_FROM_PASSED_OAUTH2_REFRESH_TOKEN or
+ // RESTORE_FROM_AUTH_CODE, respectively
+ // parameters |oauth2_refresh_token| or |auth_code| need to have non-empty
+ // value.
virtual void RestoreSession(
Profile* user_profile,
net::URLRequestContextGetter* auth_request_context,
- bool restore_from_auth_cookies) = 0;
+ SessionRestoreStrategy restore_strategy,
+ const std::string& oauth2_refresh_token,
+ const std::string& auth_code) = 0;
// Continues session restore after transient network errors.
virtual void ContinueSessionRestore() = 0;
@@ -78,7 +99,7 @@ class OAuthLoginManager {
OAuthLoginManager::Delegate* delegate_;
Profile* user_profile_;
scoped_refptr<net::URLRequestContextGetter> auth_request_context_;
- bool restore_from_auth_cookies_;
+ SessionRestoreStrategy restore_strategy_;
SessionRestoreState state_;
DISALLOW_COPY_AND_ASSIGN(OAuthLoginManager);
« no previous file with comments | « chrome/browser/chromeos/login/oauth2_token_fetcher.cc ('k') | chrome/browser/chromeos/login/oauth_login_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698