Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(20)

Side by Side Diff: content/renderer/input/input_handler_proxy.h

Issue 367173003: [Android] Implementation of overscroll effect for Android L (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Code review Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_RENDERER_INPUT_INPUT_HANDLER_PROXY_H_ 5 #ifndef CONTENT_RENDERER_INPUT_INPUT_HANDLER_PROXY_H_
6 #define CONTENT_RENDERER_INPUT_INPUT_HANDLER_PROXY_H_ 6 #define CONTENT_RENDERER_INPUT_INPUT_HANDLER_PROXY_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/containers/hash_tables.h" 9 #include "base/containers/hash_tables.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 27 matching lines...) Expand all
38 }; 38 };
39 EventDisposition HandleInputEventWithLatencyInfo( 39 EventDisposition HandleInputEventWithLatencyInfo(
40 const blink::WebInputEvent& event, 40 const blink::WebInputEvent& event,
41 ui::LatencyInfo* latency_info); 41 ui::LatencyInfo* latency_info);
42 EventDisposition HandleInputEvent(const blink::WebInputEvent& event); 42 EventDisposition HandleInputEvent(const blink::WebInputEvent& event);
43 43
44 // cc::InputHandlerClient implementation. 44 // cc::InputHandlerClient implementation.
45 virtual void WillShutdown() OVERRIDE; 45 virtual void WillShutdown() OVERRIDE;
46 virtual void Animate(base::TimeTicks time) OVERRIDE; 46 virtual void Animate(base::TimeTicks time) OVERRIDE;
47 virtual void MainThreadHasStoppedFlinging() OVERRIDE; 47 virtual void MainThreadHasStoppedFlinging() OVERRIDE;
48 virtual void DidOverscroll(const gfx::Vector2dF& accumulated_overscroll, 48 virtual void DidOverscroll(
49 const gfx::Vector2dF& latest_overscroll_delta) 49 const gfx::PointF& causal_event_viewport_point,
50 OVERRIDE; 50 const gfx::Vector2dF& accumulated_overscroll,
51 const gfx::Vector2dF& latest_overscroll_delta) OVERRIDE;
51 52
52 // blink::WebGestureCurveTarget implementation. 53 // blink::WebGestureCurveTarget implementation.
53 virtual bool scrollBy(const blink::WebFloatSize& offset, 54 virtual bool scrollBy(const blink::WebFloatSize& offset,
54 const blink::WebFloatSize& velocity); 55 const blink::WebFloatSize& velocity);
55 56
56 bool gesture_scroll_on_impl_thread_for_testing() const { 57 bool gesture_scroll_on_impl_thread_for_testing() const {
57 return gesture_scroll_on_impl_thread_; 58 return gesture_scroll_on_impl_thread_;
58 } 59 }
59 60
60 private: 61 private:
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 gfx::Vector2dF current_fling_velocity_; 118 gfx::Vector2dF current_fling_velocity_;
118 119
119 bool smooth_scroll_enabled_; 120 bool smooth_scroll_enabled_;
120 121
121 DISALLOW_COPY_AND_ASSIGN(InputHandlerProxy); 122 DISALLOW_COPY_AND_ASSIGN(InputHandlerProxy);
122 }; 123 };
123 124
124 } // namespace content 125 } // namespace content
125 126
126 #endif // CONTENT_RENDERER_INPUT_INPUT_HANDLER_PROXY_H_ 127 #endif // CONTENT_RENDERER_INPUT_INPUT_HANDLER_PROXY_H_
OLDNEW
« no previous file with comments | « content/renderer/input/input_event_filter.cc ('k') | content/renderer/input/input_handler_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698