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

Unified Diff: ui/views/controls/button/button.h

Issue 10827271: Replace views::Event with ui::Event. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 4 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 | « ui/views/accessible_pane_view_unittest.cc ('k') | ui/views/controls/button/button.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/controls/button/button.h
===================================================================
--- ui/views/controls/button/button.h (revision 151055)
+++ ui/views/controls/button/button.h (working copy)
@@ -16,7 +16,7 @@
// pressed.
class VIEWS_EXPORT ButtonListener {
public:
- virtual void ButtonPressed(Button* sender, const views::Event& event) = 0;
+ virtual void ButtonPressed(Button* sender, const ui::Event& event) = 0;
protected:
virtual ~ButtonListener() {}
@@ -50,7 +50,7 @@
explicit Button(ButtonListener* listener);
// Cause the button to notify the listener that a click occurred.
- virtual void NotifyClick(const views::Event& event);
+ virtual void NotifyClick(const ui::Event& event);
// The button's listener. Notified when clicked.
ButtonListener* listener_;
« no previous file with comments | « ui/views/accessible_pane_view_unittest.cc ('k') | ui/views/controls/button/button.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698