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

Unified Diff: ui/base/events/event_target.h

Issue 11280290: events: Change gesture-event handler in EventHandler to not return any values. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years 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/base/events/event_handler.cc ('k') | ui/base/events/event_target.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/base/events/event_target.h
diff --git a/ui/base/events/event_target.h b/ui/base/events/event_target.h
index 0b23997bd254e8489b1586c972ad14d730431c8e..4531db8c5c54ca330de8fa8dd66fa24a023480fa 100644
--- a/ui/base/events/event_target.h
+++ b/ui/base/events/event_target.h
@@ -76,7 +76,7 @@ class UI_EXPORT EventTarget : public EventHandler {
virtual EventResult OnMouseEvent(MouseEvent* event) OVERRIDE;
virtual EventResult OnScrollEvent(ScrollEvent* event) OVERRIDE;
virtual EventResult OnTouchEvent(TouchEvent* event) OVERRIDE;
- virtual EventResult OnGestureEvent(GestureEvent* event) OVERRIDE;
+ virtual void OnGestureEvent(GestureEvent* event) OVERRIDE;
private:
friend class EventDispatcher;
« no previous file with comments | « ui/base/events/event_handler.cc ('k') | ui/base/events/event_target.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698