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

Unified Diff: webkit/child/fling_curve_configuration.h

Issue 61553006: Rename WebKit namespace to blink (part 5) (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 | « webkit/child/fling_animator_impl_android.cc ('k') | webkit/child/fling_curve_configuration.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/child/fling_curve_configuration.h
diff --git a/webkit/child/fling_curve_configuration.h b/webkit/child/fling_curve_configuration.h
index 2ce5ba143bf19a7be09a775b520a70f50500b0bd..a23e2c9ebc00982da441109f84c1da38aca1d8ff 100644
--- a/webkit/child/fling_curve_configuration.h
+++ b/webkit/child/fling_curve_configuration.h
@@ -11,7 +11,7 @@
#include "third_party/WebKit/public/platform/WebFloatPoint.h"
#include "third_party/WebKit/public/platform/WebSize.h"
-namespace WebKit {
+namespace blink {
class WebGestureCurve;
}
@@ -25,14 +25,14 @@ class FlingCurveConfiguration {
virtual ~FlingCurveConfiguration();
// Create a touchpad fling curve using the current parameters.
- WebKit::WebGestureCurve* CreateForTouchPad(
- const WebKit::WebFloatPoint& velocity,
- const WebKit::WebSize& cumulativeScroll);
+ blink::WebGestureCurve* CreateForTouchPad(
+ const blink::WebFloatPoint& velocity,
+ const blink::WebSize& cumulativeScroll);
// Create a touchscreen fling curve using the current parameters.
- WebKit::WebGestureCurve* CreateForTouchScreen(
- const WebKit::WebFloatPoint& velocity,
- const WebKit::WebSize& cumulativeScroll);
+ blink::WebGestureCurve* CreateForTouchScreen(
+ const blink::WebFloatPoint& velocity,
+ const blink::WebSize& cumulativeScroll);
// Set the curve parameters.
void SetCurveParameters(
@@ -40,10 +40,10 @@ class FlingCurveConfiguration {
const std::vector<float>& new_touchscreen);
private:
- WebKit::WebGestureCurve* CreateCore(
+ blink::WebGestureCurve* CreateCore(
const std::vector<float>& coefs,
- const WebKit::WebFloatPoint& velocity,
- const WebKit::WebSize& cumulativeScroll);
+ const blink::WebFloatPoint& velocity,
+ const blink::WebSize& cumulativeScroll);
// Protect access to touchpad_coefs_ and touchscreen_coefs_.
base::Lock lock_;
« no previous file with comments | « webkit/child/fling_animator_impl_android.cc ('k') | webkit/child/fling_curve_configuration.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698