diff options
author | derat@chromium.org <derat@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-18 21:56:52 +0000 |
---|---|---|
committer | derat@chromium.org <derat@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-04-18 21:56:52 +0000 |
commit | fe5a12c1a0f2ccdbf6e14809428073c011d786ec (patch) | |
tree | a4505727404cab929d709030303665f6e2182a58 | |
parent | 7c07c577eaee972b732e835b67e840c486aa20ca (diff) | |
download | chromium_src-fe5a12c1a0f2ccdbf6e14809428073c011d786ec.zip chromium_src-fe5a12c1a0f2ccdbf6e14809428073c011d786ec.tar.gz chromium_src-fe5a12c1a0f2ccdbf6e14809428073c011d786ec.tar.bz2 |
Remove unnecessary 'static' added by r132741.
BUG=none
TEST=none
TBR=achuith
Review URL: http://codereview.chromium.org/10083055
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@132878 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | ui/base/x/events_x.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/base/x/events_x.cc b/ui/base/x/events_x.cc index c914599..61fb944 100644 --- a/ui/base/x/events_x.cc +++ b/ui/base/x/events_x.cc @@ -34,8 +34,8 @@ namespace { // Scroll amount for each wheelscroll event. 53 is also the value used for GTK+. const int kWheelScrollAmount = 53; -static const int kMinWheelButton = 4; -static const int kMaxWheelButton = 7; +const int kMinWheelButton = 4; +const int kMaxWheelButton = 7; // A class to support the detection of scroll events, using X11 valuators. class UI_EXPORT CMTEventData { |