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

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

Issue 7111033: Ties up OOBE controllers and WebUI handlers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: nits Created 9 years, 6 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/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);
};

Powered by Google App Engine
This is Rietveld 408576698