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

Unified Diff: content/renderer/gpu/input_handler_proxy.h

Issue 63253002: Rename WebKit namespace to blink (part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/renderer/gpu/input_handler_manager_client.h ('k') | content/renderer/gpu/input_handler_proxy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/gpu/input_handler_proxy.h
diff --git a/content/renderer/gpu/input_handler_proxy.h b/content/renderer/gpu/input_handler_proxy.h
index e307827bc00c799e0a690797da3fa4ad4759b74d..e0221445aee2daee2f7dedae72eeff4983c10fe2 100644
--- a/content/renderer/gpu/input_handler_proxy.h
+++ b/content/renderer/gpu/input_handler_proxy.h
@@ -25,7 +25,7 @@ class InputHandlerProxyClient;
// intended for a specific WebWidget.
class CONTENT_EXPORT InputHandlerProxy
: public cc::InputHandlerClient,
- public NON_EXPORTED_BASE(WebKit::WebGestureCurveTarget) {
+ public NON_EXPORTED_BASE(blink::WebGestureCurveTarget) {
public:
explicit InputHandlerProxy(cc::InputHandler* input_handler);
virtual ~InputHandlerProxy();
@@ -38,9 +38,9 @@ class CONTENT_EXPORT InputHandlerProxy
DROP_EVENT
};
EventDisposition HandleInputEventWithLatencyInfo(
- const WebKit::WebInputEvent& event,
+ const blink::WebInputEvent& event,
const ui::LatencyInfo& latency_info);
- EventDisposition HandleInputEvent(const WebKit::WebInputEvent& event);
+ EventDisposition HandleInputEvent(const blink::WebInputEvent& event);
// cc::InputHandlerClient implementation.
virtual void WillShutdown() OVERRIDE;
@@ -48,27 +48,27 @@ class CONTENT_EXPORT InputHandlerProxy
virtual void MainThreadHasStoppedFlinging() OVERRIDE;
virtual void DidOverscroll(const cc::DidOverscrollParams& params) OVERRIDE;
- // WebKit::WebGestureCurveTarget implementation.
- virtual void scrollBy(const WebKit::WebFloatSize& offset);
- virtual void notifyCurrentFlingVelocity(const WebKit::WebFloatSize& velocity);
+ // blink::WebGestureCurveTarget implementation.
+ virtual void scrollBy(const blink::WebFloatSize& offset);
+ virtual void notifyCurrentFlingVelocity(const blink::WebFloatSize& velocity);
bool gesture_scroll_on_impl_thread_for_testing() const {
return gesture_scroll_on_impl_thread_;
}
private:
- EventDisposition HandleGestureFling(const WebKit::WebGestureEvent& event);
+ EventDisposition HandleGestureFling(const blink::WebGestureEvent& event);
// Returns true if we scrolled by the increment.
- bool TouchpadFlingScroll(const WebKit::WebFloatSize& increment);
+ bool TouchpadFlingScroll(const blink::WebFloatSize& increment);
// Returns true if we actually had an active fling to cancel.
bool CancelCurrentFling();
- scoped_ptr<WebKit::WebGestureCurve> fling_curve_;
+ scoped_ptr<blink::WebGestureCurve> fling_curve_;
// Parameters for the active fling animation, stored in case we need to
// transfer it out later.
- WebKit::WebActiveWheelFlingParameters fling_parameters_;
+ blink::WebActiveWheelFlingParameters fling_parameters_;
InputHandlerProxyClient* client_;
cc::InputHandler* input_handler_;
« no previous file with comments | « content/renderer/gpu/input_handler_manager_client.h ('k') | content/renderer/gpu/input_handler_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698