| Index: content/browser/webui/web_ui_factory.cc
|
| diff --git a/content/browser/webui/web_ui_factory.cc b/content/browser/webui/web_ui_factory.cc
|
| index c8ae401131a4a120ad4fb6f60d56054a12bc1251..e278fef94b64a6e5ad894d5b10a6deeb30784445 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)
|
|
|