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

Unified Diff: views/examples/button_example.h

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/controls/scroll_view.cc ('k') | views/examples/combobox_example.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: views/examples/button_example.h
diff --git a/views/examples/button_example.h b/views/examples/button_example.h
index dacbc8ca8e83f94abe6651ef56973d76075e9904..f55baa9fa65fae1e2ae9552eab8a07070690f2ed 100644
--- a/views/examples/button_example.h
+++ b/views/examples/button_example.h
@@ -8,11 +8,13 @@
#include "base/string_util.h"
#include "views/controls/button/text_button.h"
#include "views/examples/example_base.h"
+#include "views/fill_layout.h"
+#include "views/view.h"
namespace examples {
// ButtonExample simply counts the number of clicks.
-class ButtonExample : protected ExampleBase, private views::ButtonListener {
+class ButtonExample : public ExampleBase, public views::ButtonListener {
public:
explicit ButtonExample(ExamplesMain* main) : ExampleBase(main), count_(0) {
button_ = new views::TextButton(this, L"Button");
@@ -24,8 +26,9 @@ class ButtonExample : protected ExampleBase, private views::ButtonListener {
return L"Text Button";
}
- virtual views::View* GetExampleView() {
- return button_;
+ virtual void CreateExampleView(views::View* container) {
+ container->SetLayoutManager(new views::FillLayout);
+ container->AddChildView(button_);
}
private:
« no previous file with comments | « views/controls/scroll_view.cc ('k') | views/examples/combobox_example.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698