| Index: ui/views/examples/example_base.h
|
| ===================================================================
|
| --- ui/views/examples/example_base.h (revision 111815)
|
| +++ ui/views/examples/example_base.h (working copy)
|
| @@ -12,12 +12,9 @@
|
|
|
| namespace views {
|
| class View;
|
| -}
|
|
|
| namespace examples {
|
|
|
| -class ExamplesMain;
|
| -
|
| class ExampleBase {
|
| public:
|
| virtual ~ExampleBase();
|
| @@ -31,7 +28,7 @@
|
| views::View* example_view() { return container_; }
|
|
|
| protected:
|
| - ExampleBase(ExamplesMain* main, const char* title);
|
| + explicit ExampleBase(const char* title);
|
|
|
| // Prints a message in the status area, at the bottom of the window.
|
| void PrintStatus(const char* format, ...);
|
| @@ -42,9 +39,6 @@
|
| }
|
|
|
| private:
|
| - // The runner actually running this example.
|
| - ExamplesMain* main_;
|
| -
|
| // Name of the example - used for the title of the tab.
|
| std::string example_title_;
|
|
|
| @@ -55,5 +49,6 @@
|
| };
|
|
|
| } // namespace examples
|
| +} // namespace views
|
|
|
| #endif // UI_VIEWS_EXAMPLES_EXAMPLE_BASE_H_
|
|
|