| 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();
|
| }
|
|
|