| Index: chrome/browser/chromeos/login/webui_login_display_host.h
|
| diff --git a/chrome/browser/chromeos/login/webui_login_display_host.h b/chrome/browser/chromeos/login/webui_login_display_host.h
|
| index 7644446cc0413bd2bbf27ca6377ae0e0684d0e0f..a80b82b1148df8b5bc6598436637f802d2aaceda 100644
|
| --- a/chrome/browser/chromeos/login/webui_login_display_host.h
|
| +++ b/chrome/browser/chromeos/login/webui_login_display_host.h
|
| @@ -16,6 +16,8 @@ class Rect;
|
|
|
| namespace chromeos {
|
|
|
| +class WebUILoginView;
|
| +
|
| // WebUI-specific implementation of the OOBE/login screen host. Uses
|
| // WebUILoginDisplay as the login screen UI implementation,
|
| class WebUILoginDisplayHost : public BaseLoginDisplayHost {
|
| @@ -34,7 +36,15 @@ class WebUILoginDisplayHost : public BaseLoginDisplayHost {
|
| virtual void SetStatusAreaVisible(bool visible) OVERRIDE;
|
| virtual void ShowBackground() OVERRIDE;
|
|
|
| + // BaseLoginDisplayHost overrides:
|
| + virtual WizardController* CreateWizardController();
|
| +
|
| private:
|
| + // Container of the screen we are displaying.
|
| + views::Widget* login_window_;
|
| + // Container of the view we are displaying.
|
| + WebUILoginView* login_view_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(WebUILoginDisplayHost);
|
| };
|
|
|
|
|