summaryrefslogtreecommitdiffstats
path: root/views/event.h
diff options
context:
space:
mode:
authorsky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-15 16:28:51 +0000
committersky@chromium.org <sky@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-15 16:28:51 +0000
commit74db479680863c2094c44825b8b28ad7572e4e60 (patch)
tree1b99fccd35f05406b35a45d6caa512d5ee5b286f /views/event.h
parentdaaaef4c3fa2cf8ccc6e49cb40c359c10ae79c9b (diff)
downloadchromium_src-74db479680863c2094c44825b8b28ad7572e4e60.zip
chromium_src-74db479680863c2094c44825b8b28ad7572e4e60.tar.gz
chromium_src-74db479680863c2094c44825b8b28ad7572e4e60.tar.bz2
Revert 49795 - Changes the tab close button to a dot, unless you're near the button
or the tab is selected. I'm not to keen on the mouse near names, if you have better ideas please say so. BUG=45743 TEST=none Review URL: http://codereview.chromium.org/2796006 TBR=sky@chromium.org Review URL: http://codereview.chromium.org/2823005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@49801 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/event.h')
-rw-r--r--views/event.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/views/event.h b/views/event.h
index 91c0a53..6f96a71 100644
--- a/views/event.h
+++ b/views/event.h
@@ -41,8 +41,6 @@ class Event {
ET_MOUSE_MOVED,
ET_MOUSE_ENTERED,
ET_MOUSE_EXITED,
- ET_MOUSE_NEAR,
- ET_MOUSE_EXITED_NEAR,
ET_KEY_PRESSED,
ET_KEY_RELEASED,
ET_MOUSEWHEEL,
@@ -102,9 +100,7 @@ class Event {
type_ == ET_MOUSE_MOVED ||
type_ == ET_MOUSE_ENTERED ||
type_ == ET_MOUSE_EXITED ||
- type_ == ET_MOUSEWHEEL ||
- type_ == ET_MOUSE_NEAR ||
- type_ == ET_MOUSE_EXITED_NEAR;
+ type_ == ET_MOUSEWHEEL;
}
#if defined(OS_WIN)