| Index: ash/shell.cc
|
| diff --git a/ash/shell.cc b/ash/shell.cc
|
| index 25834a2f32f0d68b9f026481dffac0f601c2fa0e..935b1e3c1f8bda73fd5e8fb01fa2b84c5aa59578 100644
|
| --- a/ash/shell.cc
|
| +++ b/ash/shell.cc
|
| @@ -81,6 +81,10 @@ void CreateSpecialContainers(aura::Window::Windows* containers) {
|
| internal::kShellWindowId_AlwaysOnTopContainer);
|
| containers->push_back(always_on_top_container);
|
|
|
| + aura::Window* panel_container = new aura::Window(NULL);
|
| + panel_container->set_id(internal::kShellWindowId_PanelContainer);
|
| + containers->push_back(panel_container);
|
| +
|
| aura::Window* launcher_container = new aura::Window(NULL);
|
| launcher_container->set_id(internal::kShellWindowId_LauncherContainer);
|
| containers->push_back(launcher_container);
|
|
|