summaryrefslogtreecommitdiffstats
path: root/content
diff options
context:
space:
mode:
Diffstat (limited to 'content')
-rw-r--r--content/browser/webui/web_ui_factory.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/content/browser/webui/web_ui_factory.cc b/content/browser/webui/web_ui_factory.cc
index c8ae401..e278fef 100644
--- a/content/browser/webui/web_ui_factory.cc
+++ b/content/browser/webui/web_ui_factory.cc
@@ -55,6 +55,7 @@
#endif
#if defined(TOUCH_UI) && defined(OS_CHROMEOS)
+#include "chrome/browser/chromeos/webui/login/login_container_ui.h"
#include "chrome/browser/chromeos/webui/login/login_ui.h"
#endif
@@ -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)