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

Unified Diff: views/examples/example_base.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/examples/combobox_example.h ('k') | views/examples/example_base.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: views/examples/example_base.h
diff --git a/views/examples/example_base.h b/views/examples/example_base.h
index 35898ebe5041e0c9a7f96a1c78ef53fde7d98581..fbe5cbc89d1d6cdfd0e9fe858ba552566a873375 100644
--- a/views/examples/example_base.h
+++ b/views/examples/example_base.h
@@ -8,8 +8,6 @@
#include <string>
#include "base/basictypes.h"
-#include "views/examples/examples_main.h"
-#include "views/window/window_delegate.h"
namespace views {
class View;
@@ -17,19 +15,27 @@ class View;
namespace examples {
+class ExamplesMain;
+
class ExampleBase {
+ public:
+ // Returns the view containing this example controls.
+ // This view is added as a tab to the example application.
+ views::View* GetExampleView() {
+ return container_;
+ }
+
+ // Sub-classes should creates and add the views to the given parent.
+ virtual void CreateExampleView(views::View* parent) = 0;
+
protected:
- explicit ExampleBase(ExamplesMain* main) : main_(main) {}
+ explicit ExampleBase(ExamplesMain* main);
virtual ~ExampleBase() {}
// Sub-classes should return the name of this test.
// It is used as the title of the tab displaying this test's controls.
virtual std::wstring GetExampleTitle() = 0;
- // Sub-classes should return the view containing this example controls.
- // This view is added as a tab to the example application.
- virtual views::View* GetExampleView() = 0;
-
// Prints a message in the status area, at the bottom of the window.
void PrintStatus(const wchar_t* format, ...);
@@ -42,6 +48,9 @@ class ExampleBase {
// The runner actually running this test.
ExamplesMain* main_;
+ // The view containing example views.
+ views::View* container_;
+
DISALLOW_COPY_AND_ASSIGN(ExampleBase);
};
« no previous file with comments | « views/examples/combobox_example.h ('k') | views/examples/example_base.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698