| Index: ash/aura/wm_shell_aura.cc
|
| diff --git a/ash/aura/wm_shell_aura.cc b/ash/aura/wm_shell_aura.cc
|
| index 0cbc2f2aed82bb0525b2177d088a2caea6efc641..be492d97ca14c1e426c2fb36b2a344158b251e46 100644
|
| --- a/ash/aura/wm_shell_aura.cc
|
| +++ b/ash/aura/wm_shell_aura.cc
|
| @@ -75,9 +75,11 @@ void WmShellAura::Shutdown() {
|
| WmShell::Shutdown();
|
| }
|
|
|
| -WmWindow* WmShellAura::NewContainerWindow() {
|
| +WmWindow* WmShellAura::NewWindow(ui::wm::WindowType window_type,
|
| + ui::LayerType layer_type) {
|
| aura::Window* aura_window = new aura::Window(nullptr);
|
| - aura_window->Init(ui::LAYER_NOT_DRAWN);
|
| + aura_window->SetType(window_type);
|
| + aura_window->Init(layer_type);
|
| return WmWindowAura::Get(aura_window);
|
| }
|
|
|
|
|