Index: content/renderer/webscrollbarbehavior_impl_mac.mm |
=================================================================== |
--- content/renderer/webscrollbarbehavior_impl_mac.mm (revision 0) |
+++ content/renderer/webscrollbarbehavior_impl_mac.mm (working copy) |
@@ -0,0 +1,21 @@ |
+// Copyright 2014 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "content/renderer/webscrollbarbehavior_impl_mac.h" |
+ |
+namespace content { |
+ |
+WebScrollbarBehaviorImpl::WebScrollbarBehaviorImpl() |
+ : jump_on_track_click_(false) { |
+} |
+ |
+bool WebScrollbarBehaviorImpl::shouldCenterOnThumb( |
+ blink::WebScrollbarBehavior::Button mouseButton, |
+ bool shiftKeyPressed, |
+ bool altKeyPressed) { |
+ return (mouseButton == blink::WebScrollbarBehavior::ButtonLeft) && |
+ (jump_on_track_click_ != altKeyPressed); |
+} |
+ |
+} // namespace content |
Property changes on: content/renderer/webscrollbarbehavior_impl_mac.mm |
___________________________________________________________________ |
Added: svn:eol-style |
## -0,0 +1 ## |
+LF |
\ No newline at end of property |