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

Unified Diff: views/examples/examples_main.cc

Issue 347010: Fixed view example. It was failing because some of view classes requires WidgetGTK in (Closed)
Patch Set: revert unintentional change Created 11 years, 2 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 | « views/examples/example_base.cc ('k') | views/examples/message_box_example.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: views/examples/examples_main.cc
diff --git a/views/examples/examples_main.cc b/views/examples/examples_main.cc
index 6d65e8ac03074f960f0ee5818349051fd0ba9008..2dc6c9679f2c0b8a2f66861cf47bc6f3632e8cc7 100644
--- a/views/examples/examples_main.cc
+++ b/views/examples/examples_main.cc
@@ -69,6 +69,9 @@ void ExamplesMain::Run() {
layout->StartRow(0 /* no expand */, 0);
layout->AddView(status_label_);
+ views::Window* window =
+ views::Window::CreateChromeWindow(NULL, gfx::Rect(0, 0, 600, 300), this);
+
examples::TextfieldExample textfield_example(this);
tabbed_pane->AddTab(textfield_example.GetExampleTitle(),
textfield_example.GetExampleView());
@@ -97,10 +100,7 @@ void ExamplesMain::Run() {
tabbed_pane->AddTab(scroll_view_example.GetExampleTitle(),
scroll_view_example.GetExampleView());
- views::Window* window =
- views::Window::CreateChromeWindow(NULL, gfx::Rect(0, 0, 600, 300), this);
window->Show();
-
views::AcceleratorHandler accelerator_handler;
MessageLoopForUI::current()->Run(&accelerator_handler);
}
« no previous file with comments | « views/examples/example_base.cc ('k') | views/examples/message_box_example.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698