summaryrefslogtreecommitdiffstats
path: root/ui/views/view.cc
diff options
context:
space:
mode:
authorsadrul@chromium.org <sadrul@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-12-18 06:08:18 +0000
committersadrul@chromium.org <sadrul@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-12-18 06:08:18 +0000
commitd44efe090c5dd46b2857aaaca9c939dfbb3cba0b (patch)
tree2f80a7dbeaebadad5a0755dc3d8b349d31b390fc /ui/views/view.cc
parentefb6409dd196bc229910962753836e9d512905d3 (diff)
downloadchromium_src-d44efe090c5dd46b2857aaaca9c939dfbb3cba0b.zip
chromium_src-d44efe090c5dd46b2857aaaca9c939dfbb3cba0b.tar.gz
chromium_src-d44efe090c5dd46b2857aaaca9c939dfbb3cba0b.tar.bz2
events: Update mouse-event handlers to not return EventResult.
This is the last step. Once this is done, we can possibly hide EventResult. BUG=163618 Review URL: https://codereview.chromium.org/11592011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@173653 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/views/view.cc')
-rw-r--r--ui/views/view.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/ui/views/view.cc b/ui/views/view.cc
index b40faee..a38ccb7 100644
--- a/ui/views/view.cc
+++ b/ui/views/view.cc
@@ -870,8 +870,7 @@ bool View::OnMouseWheel(const ui::MouseWheelEvent& event) {
void View::OnKeyEvent(ui::KeyEvent* event) {
}
-ui::EventResult View::OnMouseEvent(ui::MouseEvent* event) {
- return ui::ER_UNHANDLED;
+void View::OnMouseEvent(ui::MouseEvent* event) {
}
void View::OnScrollEvent(ui::ScrollEvent* event) {