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

Unified Diff: chrome/browser/webui/web_ui_factory.cc

Issue 6579003: Add in chrome://login-container (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Changes in response to rjkroege's comments Created 9 years, 10 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/webui/web_ui_factory.cc
diff --git a/chrome/browser/webui/web_ui_factory.cc b/chrome/browser/webui/web_ui_factory.cc
index 6cd39b1ca8f271964ae21d1eb7e94b8a2e69fa67..a3122b6683e5011a6cd88dfea500222c715d9a12 100644
--- a/chrome/browser/webui/web_ui_factory.cc
+++ b/chrome/browser/webui/web_ui_factory.cc
@@ -56,6 +56,7 @@
#if defined(TOUCH_UI) && defined(OS_CHROMEOS)
#include "chrome/browser/chromeos/webui/login/login_ui.h"
+#include "chrome/browser/chromeos/webui/login/login_container_ui.h"
Nikita (slow) 2011/02/28 14:26:17 nit: alpha sort headers
rharrison 2011/02/28 19:28:24 Done.
#endif
#if defined(OS_WIN)
@@ -225,6 +226,8 @@ static WebUIFactoryFunction GetWebUIFactoryFunction(Profile* profile,
#if defined(TOUCH_UI) && defined(OS_CHROMEOS)
if (url.host() == chrome::kChromeUILoginHost)
return &NewWebUI<chromeos::LoginUI>;
+ if (url.host() == chrome::kChromeUILoginContainerHost)
+ return &NewWebUI<chromeos::LoginContainerUI>;
#endif
if (url.spec() == chrome::kChromeUIConstrainedHTMLTestURL)

Powered by Google App Engine
This is Rietveld 408576698