| Index: ash/wm/aura/wm_globals_aura.cc
|
| diff --git a/ash/wm/aura/wm_globals_aura.cc b/ash/wm/aura/wm_globals_aura.cc
|
| index b245f7278dca8b886bcf7ff293a3ff0e5bb54f13..33561c862e55b4899de10009ce6c8d7c61e1621d 100644
|
| --- a/ash/wm/aura/wm_globals_aura.cc
|
| +++ b/ash/wm/aura/wm_globals_aura.cc
|
| @@ -40,6 +40,12 @@ WmGlobalsAura::~WmGlobalsAura() {
|
| Shell::GetInstance()->RemoveShellObserver(this);
|
| }
|
|
|
| +WmWindow* WmGlobalsAura::NewContainerWindow() {
|
| + aura::Window* aura_window = new aura::Window(nullptr);
|
| + aura_window->Init(ui::LAYER_NOT_DRAWN);
|
| + return WmWindowAura::Get(aura_window);
|
| +}
|
| +
|
| WmWindow* WmGlobalsAura::GetFocusedWindow() {
|
| return WmWindowAura::Get(
|
| aura::client::GetFocusClient(Shell::GetPrimaryRootWindow())
|
|
|