| 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_WEBUI_LOGIN_DISPLAY_HOST_H_ | 5 #ifndef CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_LOGIN_DISPLAY_HOST_H_ |
| 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_LOGIN_DISPLAY_HOST_H_ | 6 #define CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_LOGIN_DISPLAY_HOST_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 virtual ~WebUILoginDisplayHost(); | 28 virtual ~WebUILoginDisplayHost(); |
| 29 | 29 |
| 30 // LoginDisplayHost implementation: | 30 // LoginDisplayHost implementation: |
| 31 virtual LoginDisplay* CreateLoginDisplay( | 31 virtual LoginDisplay* CreateLoginDisplay( |
| 32 LoginDisplay::Delegate* delegate) OVERRIDE; | 32 LoginDisplay::Delegate* delegate) OVERRIDE; |
| 33 virtual gfx::NativeWindow GetNativeWindow() const OVERRIDE; | 33 virtual gfx::NativeWindow GetNativeWindow() const OVERRIDE; |
| 34 virtual views::Widget* GetWidget() const OVERRIDE; | 34 virtual views::Widget* GetWidget() const OVERRIDE; |
| 35 virtual void OpenProxySettings() OVERRIDE; | 35 virtual void OpenProxySettings() OVERRIDE; |
| 36 virtual void SetOobeProgressBarVisible(bool visible) OVERRIDE; | 36 virtual void SetOobeProgressBarVisible(bool visible) OVERRIDE; |
| 37 virtual void SetShutdownButtonEnabled(bool enable) OVERRIDE; | 37 virtual void SetShutdownButtonEnabled(bool enable) OVERRIDE; |
| 38 virtual void SetStatusAreaEnabled(bool enable) OVERRIDE; | |
| 39 virtual void SetStatusAreaVisible(bool visible) OVERRIDE; | 38 virtual void SetStatusAreaVisible(bool visible) OVERRIDE; |
| 40 virtual void StartWizard(const std::string& first_screen_name, | 39 virtual void StartWizard(const std::string& first_screen_name, |
| 41 DictionaryValue* screen_parameters) OVERRIDE; | 40 DictionaryValue* screen_parameters) OVERRIDE; |
| 42 virtual void StartSignInScreen() OVERRIDE; | 41 virtual void StartSignInScreen() OVERRIDE; |
| 43 virtual void OnPreferencesChanged() OVERRIDE; | 42 virtual void OnPreferencesChanged() OVERRIDE; |
| 44 | 43 |
| 45 // BaseLoginDisplayHost overrides: | 44 // BaseLoginDisplayHost overrides: |
| 46 virtual WizardController* CreateWizardController() OVERRIDE; | 45 virtual WizardController* CreateWizardController() OVERRIDE; |
| 47 virtual void OnBrowserCreated() OVERRIDE; | 46 virtual void OnBrowserCreated() OVERRIDE; |
| 48 | 47 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 63 | 62 |
| 64 // True if the login display is the current screen. | 63 // True if the login display is the current screen. |
| 65 bool is_showing_login_; | 64 bool is_showing_login_; |
| 66 | 65 |
| 67 DISALLOW_COPY_AND_ASSIGN(WebUILoginDisplayHost); | 66 DISALLOW_COPY_AND_ASSIGN(WebUILoginDisplayHost); |
| 68 }; | 67 }; |
| 69 | 68 |
| 70 } // namespace chromeos | 69 } // namespace chromeos |
| 71 | 70 |
| 72 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_LOGIN_DISPLAY_HOST_H_ | 71 #endif // CHROME_BROWSER_CHROMEOS_LOGIN_WEBUI_LOGIN_DISPLAY_HOST_H_ |
| OLD | NEW |