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

Unified Diff: ui/views/widget/desktop_aura/desktop_activation_client.cc

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
Index: ui/views/widget/desktop_aura/desktop_activation_client.cc
diff --git a/ui/views/widget/desktop_aura/desktop_activation_client.cc b/ui/views/widget/desktop_aura/desktop_activation_client.cc
index d2123a37f5bec62271ba219ef794328718b27be8..0581e1b9614f9cee85dbac35c5b1b6af01e55fb6 100644
--- a/ui/views/widget/desktop_aura/desktop_activation_client.cc
+++ b/ui/views/widget/desktop_aura/desktop_activation_client.cc
@@ -168,12 +168,10 @@ ui::EventResult DesktopActivationClient::OnMouseEvent(ui::MouseEvent* event) {
return ui::ER_UNHANDLED;
}
-ui::EventResult DesktopActivationClient::OnScrollEvent(ui::ScrollEvent* event) {
- return ui::ER_UNHANDLED;
+void DesktopActivationClient::OnScrollEvent(ui::ScrollEvent* event) {
}
-ui::EventResult DesktopActivationClient::OnTouchEvent(ui::TouchEvent* event) {
- return ui::ER_UNHANDLED;
+void DesktopActivationClient::OnTouchEvent(ui::TouchEvent* event) {
}
void DesktopActivationClient::OnGestureEvent(ui::GestureEvent* event) {
« no previous file with comments | « ui/views/widget/desktop_aura/desktop_activation_client.h ('k') | ui/views/widget/desktop_aura/desktop_native_widget_aura.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698