Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(461)

Unified Diff: ash/shell.cc

Issue 9027020: Bypass ToplevelWindowEventFilter for panels. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge/sync Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | ash/shell_window_ids.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « no previous file | ash/shell_window_ids.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698