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

Unified Diff: ui/aura_shell/sample_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_shell/sample_window.cc
===================================================================
--- ui/aura_shell/sample_window.cc (revision 101829)
+++ ui/aura_shell/sample_window.cc (working copy)
@@ -4,6 +4,7 @@
#include "ui/aura_shell/sample_window.h"
+#include "ui/aura/window.h"
#include "ui/gfx/canvas.h"
#include "views/widget/widget.h"
@@ -12,8 +13,11 @@
// static
void SampleWindow::CreateSampleWindow() {
- views::Widget::CreateWindowWithBounds(new SampleWindow,
- gfx::Rect(120, 150, 400, 300))->Show();
+ views::Widget* widget =
+ views::Widget::CreateWindowWithBounds(new SampleWindow,
+ gfx::Rect(120, 150, 400, 300));
+ widget->GetNativeView()->set_name(L"SampleWindow");
+ widget->Show();
}
SampleWindow::SampleWindow() {

Powered by Google App Engine
This is Rietveld 408576698