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

Unified Diff: ui/aura/root_window.h

Issue 11308322: events: Start changing EventHandler interface to not return a value. (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 | « no previous file | ui/aura/root_window.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/aura/root_window.h
diff --git a/ui/aura/root_window.h b/ui/aura/root_window.h
index 67498cfefbe2d7e4399cd8c1927674f71bd5e725..3770d9e299e78e5226395ced38e10f68240e924d 100644
--- a/ui/aura/root_window.h
+++ b/ui/aura/root_window.h
@@ -280,12 +280,11 @@ class AURA_EXPORT RootWindow : public ui::CompositorDelegate,
// sending exited and entered events as its value changes.
void HandleMouseMoved(const ui::MouseEvent& event, Window* target);
- bool ProcessMouseEvent(Window* target, ui::MouseEvent* event);
- bool ProcessKeyEvent(Window* target, ui::KeyEvent* event);
- bool ProcessScrollEvent(Window* target, ui::ScrollEvent* event);
- ui::EventResult ProcessTouchEvent(Window* target, ui::TouchEvent* event);
- ui::EventResult ProcessGestureEvent(Window* target,
- ui::GestureEvent* event);
+ void ProcessMouseEvent(Window* target, ui::MouseEvent* event);
+ void ProcessKeyEvent(Window* target, ui::KeyEvent* event);
+ void ProcessScrollEvent(Window* target, ui::ScrollEvent* event);
+ void ProcessTouchEvent(Window* target, ui::TouchEvent* event);
+ void ProcessGestureEvent(Window* target, ui::GestureEvent* event);
bool ProcessGestures(ui::GestureRecognizer::Gestures* gestures);
// Called when a Window is attached or detached from the RootWindow.
« no previous file with comments | « no previous file | ui/aura/root_window.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698