| OLD | NEW |
| 1 // Copyright (c) 2012 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_BROWSER_CHROMEOS_LOGIN_LOGIN_DISPLAY_HOST_IMPL_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_DISPLAY_HOST_IMPL_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_DISPLAY_HOST_IMPL_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_DISPLAY_HOST_IMPL_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 virtual void OnCompleteLogin() OVERRIDE; | 60 virtual void OnCompleteLogin() OVERRIDE; |
| 61 virtual void OpenProxySettings() OVERRIDE; | 61 virtual void OpenProxySettings() OVERRIDE; |
| 62 virtual void SetOobeProgressBarVisible(bool visible) OVERRIDE; | 62 virtual void SetOobeProgressBarVisible(bool visible) OVERRIDE; |
| 63 virtual void SetShutdownButtonEnabled(bool enable) OVERRIDE; | 63 virtual void SetShutdownButtonEnabled(bool enable) OVERRIDE; |
| 64 virtual void SetStatusAreaVisible(bool visible) OVERRIDE; | 64 virtual void SetStatusAreaVisible(bool visible) OVERRIDE; |
| 65 virtual void CheckForAutoEnrollment() OVERRIDE; | 65 virtual void CheckForAutoEnrollment() OVERRIDE; |
| 66 virtual void StartWizard( | 66 virtual void StartWizard( |
| 67 const std::string& first_screen_name, | 67 const std::string& first_screen_name, |
| 68 scoped_ptr<DictionaryValue> screen_parameters) OVERRIDE; | 68 scoped_ptr<DictionaryValue> screen_parameters) OVERRIDE; |
| 69 virtual WizardController* GetWizardController() OVERRIDE; | 69 virtual WizardController* GetWizardController() OVERRIDE; |
| 70 virtual AppLaunchController* GetAppLaunchController() OVERRIDE; |
| 70 virtual void StartUserAdding( | 71 virtual void StartUserAdding( |
| 71 const base::Closure& completion_callback) OVERRIDE; | 72 const base::Closure& completion_callback) OVERRIDE; |
| 72 virtual void StartSignInScreen() OVERRIDE; | 73 virtual void StartSignInScreen() OVERRIDE; |
| 73 virtual void ResumeSignInScreen() OVERRIDE; | 74 virtual void ResumeSignInScreen() OVERRIDE; |
| 74 virtual void OnPreferencesChanged() OVERRIDE; | 75 virtual void OnPreferencesChanged() OVERRIDE; |
| 75 virtual void PrewarmAuthentication() OVERRIDE; | 76 virtual void PrewarmAuthentication() OVERRIDE; |
| 76 virtual void StartAppLaunch(const std::string& app_id) OVERRIDE; | 77 virtual void StartAppLaunch(const std::string& app_id) OVERRIDE; |
| 77 | 78 |
| 78 // Creates WizardController instance. | 79 // Creates WizardController instance. |
| 79 WizardController* CreateWizardController(); | 80 WizardController* CreateWizardController(); |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 // A focus ring controller to draw focus ring around view for keyboard | 235 // A focus ring controller to draw focus ring around view for keyboard |
| 235 // driven oobe. | 236 // driven oobe. |
| 236 scoped_ptr<FocusRingController> focus_ring_controller_; | 237 scoped_ptr<FocusRingController> focus_ring_controller_; |
| 237 | 238 |
| 238 DISALLOW_COPY_AND_ASSIGN(LoginDisplayHostImpl); | 239 DISALLOW_COPY_AND_ASSIGN(LoginDisplayHostImpl); |
| 239 }; | 240 }; |
| 240 | 241 |
| 241 } // namespace chromeos | 242 } // namespace chromeos |
| 242 | 243 |
| 243 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_DISPLAY_HOST_IMPL_H_ | 244 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_LOGIN_DISPLAY_HOST_IMPL_H_ |
| OLD | NEW |