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

Unified Diff: ui/aura/root_window.cc

Issue 7970001: Better Z-index support. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 months 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
Index: ui/aura/root_window.cc
===================================================================
--- ui/aura/root_window.cc (revision 101829)
+++ ui/aura/root_window.cc (working copy)
@@ -17,6 +17,7 @@
: Window(NULL),
mouse_pressed_handler_(NULL),
ALLOW_THIS_IN_INITIALIZER_LIST(focus_manager_(new FocusManager(this))) {
+ set_name(L"RootWindow");
}
RootWindow::~RootWindow() {
@@ -46,10 +47,6 @@
return false;
}
-bool RootWindow::IsTopLevelWindowContainer() const {
- return true;
-}
-
FocusManager* RootWindow::GetFocusManager() {
return focus_manager_.get();
}

Powered by Google App Engine
This is Rietveld 408576698