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

Unified Diff: ui/aura/desktop/desktop_stacking_client.cc

Issue 10407022: Make Chrome limp briefly before freaking out with aura no ash. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 7 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
« no previous file with comments | « ui/aura/desktop/desktop_stacking_client.h ('k') | ui/views/widget/desktop_native_widget_helper_aura.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/aura/desktop/desktop_stacking_client.cc
===================================================================
--- ui/aura/desktop/desktop_stacking_client.cc (revision 137506)
+++ ui/aura/desktop/desktop_stacking_client.cc (working copy)
@@ -18,7 +18,11 @@
}
Window* DesktopStackingClient::GetDefaultParent(Window* window) {
- return window->GetRootWindow();
+ if (!null_parent_.get()) {
+ null_parent_.reset(new aura::RootWindow(gfx::Rect(100, 100)));
+ null_parent_->Init();
+ }
+ return null_parent_.get();
}
} // namespace aura
« no previous file with comments | « ui/aura/desktop/desktop_stacking_client.h ('k') | ui/views/widget/desktop_native_widget_helper_aura.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698