| Index: chrome/browser/extensions/api/app_window/app_window_api.cc
|
| ===================================================================
|
| --- chrome/browser/extensions/api/app_window/app_window_api.cc (revision 237093)
|
| +++ chrome/browser/extensions/api/app_window/app_window_api.cc (working copy)
|
| @@ -36,6 +36,10 @@
|
| #include "ui/aura/window.h"
|
| #endif
|
|
|
| +#if defined(OS_WIN)
|
| +#include "chrome/browser/ui/touch_web_contents_observer_win.h"
|
| +#endif
|
| +
|
| using apps::ShellWindow;
|
|
|
| namespace app_window = extensions::api::app_window;
|
| @@ -334,6 +338,10 @@
|
| SetCreateResultFromShellWindow(shell_window, result);
|
| SetResult(result);
|
|
|
| +#if defined(OS_WIN)
|
| + TouchWebContentsObserver::CreateForWebContents(shell_window->web_contents());
|
| +#endif
|
| +
|
| if (apps::ShellWindowRegistry::Get(GetProfile())
|
| ->HadDevToolsAttached(created_view)) {
|
| new DevToolsRestorer(this, created_view);
|
|
|