summaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authormsw@chromium.org <msw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-29 00:39:05 +0000
committermsw@chromium.org <msw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-29 00:39:05 +0000
commit34338254f776be94d79ca184c4eb2ea5b3f62318 (patch)
treea20d913935cfe06590e6a39808234774e35e3ff8 /ui
parent7bd801611073a0e79a011a96ec72cb201656344a (diff)
downloadchromium_src-34338254f776be94d79ca184c4eb2ea5b3f62318.zip
chromium_src-34338254f776be94d79ca184c4eb2ea5b3f62318.tar.gz
chromium_src-34338254f776be94d79ca184c4eb2ea5b3f62318.tar.bz2
Disambiguate OnMouseCaptureLost from OnMouseReleased.
Nix RenderWidgetHostViewViews' OnMouseCaptureLost forwarding. Consolidate code, remove unnecessary overrides, etc. Fix up test, |event| args, OVERRIDEs, and (c) dates. BUG=72040 TEST=Views mouse button release, cancelling mouse down/drag. Review URL: http://codereview.chromium.org/6685069 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79640 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui')
-rw-r--r--ui/views/view.cc5
1 files changed, 0 insertions, 5 deletions
diff --git a/ui/views/view.cc b/ui/views/view.cc
index 5742af1..7530608 100644
--- a/ui/views/view.cc
+++ b/ui/views/view.cc
@@ -440,23 +440,18 @@ bool View::OnMouseDragged(const MouseEvent& event) {
}
void View::OnMouseReleased(const MouseEvent& event) {
-
}
void View::OnMouseCaptureLost() {
-
}
void View::OnMouseMoved(const MouseEvent& event) {
-
}
void View::OnMouseEntered(const MouseEvent& event) {
-
}
void View::OnMouseExited(const MouseEvent& event) {
-
}
// Accelerators ----------------------------------------------------------------