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

Unified Diff: ui/views/examples/button_example.h

Issue 8687013: Get the examples to run in aura_shell. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 1 month 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/views/examples/button_example.h
===================================================================
--- ui/views/examples/button_example.h (revision 111708)
+++ ui/views/examples/button_example.h (working copy)
@@ -13,29 +13,27 @@
namespace views {
class View;
-}
namespace examples {
// ButtonExample simply counts the number of clicks.
-class ButtonExample : public ExampleBase, public views::ButtonListener {
+class ButtonExample : public ExampleBase, public ButtonListener {
public:
- explicit ButtonExample(ExamplesMain* main);
+ ButtonExample();
virtual ~ButtonExample();
// Overridden from ExampleBase:
- virtual void CreateExampleView(views::View* container) OVERRIDE;
+ virtual void CreateExampleView(View* container) OVERRIDE;
private:
- // Overridden from views::ButtonListener:
- virtual void ButtonPressed(views::Button* sender,
- const views::Event& event) OVERRIDE;
+ // Overridden from ButtonListener:
+ virtual void ButtonPressed(Button* sender, const Event& event) OVERRIDE;
// The only control in this test.
- views::TextButton* button_;
+ TextButton* button_;
// Values used to modify the look and feel of the button.
- views::TextButton::TextAlignment alignment_;
+ TextButton::TextAlignment alignment_;
bool use_native_theme_border_;
SkBitmap* icon_;
@@ -46,5 +44,6 @@
};
} // namespace examples
+} // namespace views
#endif // UI_VIEWS_EXAMPLES_BUTTON_EXAMPLE_H_

Powered by Google App Engine
This is Rietveld 408576698