| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_FAKE_LOGIN_UTILS_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_FAKE_LOGIN_UTILS_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_FAKE_LOGIN_UTILS_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_FAKE_LOGIN_UTILS_H_ |
| 7 | 7 |
| 8 #include "chrome/browser/chromeos/login/auth/user_context.h" | 8 #include "chrome/browser/chromeos/login/auth/user_context.h" |
| 9 #include "chrome/browser/chromeos/login/login_utils.h" | 9 #include "chrome/browser/chromeos/login/login_utils.h" |
| 10 | 10 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 bool has_cookies, | 28 bool has_cookies, |
| 29 bool has_active_session, | 29 bool has_active_session, |
| 30 LoginUtils::Delegate* delegate) OVERRIDE; | 30 LoginUtils::Delegate* delegate) OVERRIDE; |
| 31 virtual void DelegateDeleted(LoginUtils::Delegate* delegate) OVERRIDE; | 31 virtual void DelegateDeleted(LoginUtils::Delegate* delegate) OVERRIDE; |
| 32 virtual void CompleteOffTheRecordLogin(const GURL& start_url) OVERRIDE; | 32 virtual void CompleteOffTheRecordLogin(const GURL& start_url) OVERRIDE; |
| 33 virtual void SetFirstLoginPrefs(PrefService* prefs) OVERRIDE; | 33 virtual void SetFirstLoginPrefs(PrefService* prefs) OVERRIDE; |
| 34 virtual scoped_refptr<Authenticator> CreateAuthenticator( | 34 virtual scoped_refptr<Authenticator> CreateAuthenticator( |
| 35 LoginStatusConsumer* consumer) OVERRIDE; | 35 LoginStatusConsumer* consumer) OVERRIDE; |
| 36 virtual void RestoreAuthenticationSession(Profile* profile) OVERRIDE; | 36 virtual void RestoreAuthenticationSession(Profile* profile) OVERRIDE; |
| 37 virtual void InitRlzDelayed(Profile* user_profile) OVERRIDE; | 37 virtual void InitRlzDelayed(Profile* user_profile) OVERRIDE; |
| 38 virtual bool RestartToApplyPerSessionFlagsIfNeed(Profile* profile) OVERRIDE; |
| 38 | 39 |
| 39 void SetExpectedCredentials(const UserContext& user_context); | 40 void SetExpectedCredentials(const UserContext& user_context); |
| 40 void set_should_launch_browser(bool should_launch_browser) { | 41 void set_should_launch_browser(bool should_launch_browser) { |
| 41 should_launch_browser_ = should_launch_browser; | 42 should_launch_browser_ = should_launch_browser; |
| 42 } | 43 } |
| 43 | 44 |
| 44 private: | 45 private: |
| 45 scoped_refptr<Authenticator> authenticator_; | 46 scoped_refptr<Authenticator> authenticator_; |
| 46 UserContext expected_user_context_; | 47 UserContext expected_user_context_; |
| 47 bool should_launch_browser_; | 48 bool should_launch_browser_; |
| 48 | 49 |
| 49 DISALLOW_COPY_AND_ASSIGN(FakeLoginUtils); | 50 DISALLOW_COPY_AND_ASSIGN(FakeLoginUtils); |
| 50 }; | 51 }; |
| 51 | 52 |
| 52 } // namespace chromeos | 53 } // namespace chromeos |
| 53 | 54 |
| 54 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_FAKE_LOGIN_UTILS_H_ | 55 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_FAKE_LOGIN_UTILS_H_ |
| OLD | NEW |