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

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

Issue 11568006: events: Update scroll and touch handlers to not return EventResult. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: self-nit 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 fa05d025d8f6563d2d889692eb2627a57cc116c7..1bd5033d599e45200055bc3c89cea72c28d3248a 100644
--- a/ui/base/events/event_target.h
+++ b/ui/base/events/event_target.h
@@ -75,8 +75,8 @@ class UI_EXPORT EventTarget : public EventHandler {
virtual void OnEvent(Event* event) OVERRIDE;
virtual EventResult OnKeyEvent(KeyEvent* event) OVERRIDE;
virtual EventResult OnMouseEvent(MouseEvent* event) OVERRIDE;
- virtual EventResult OnScrollEvent(ScrollEvent* event) OVERRIDE;
- virtual EventResult OnTouchEvent(TouchEvent* event) OVERRIDE;
+ virtual void OnScrollEvent(ScrollEvent* event) OVERRIDE;
+ virtual void OnTouchEvent(TouchEvent* event) OVERRIDE;
virtual void OnGestureEvent(GestureEvent* event) OVERRIDE;
private:
« 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