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

Unified Diff: webkit/child/fling_curve_configuration.cc

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_curve_configuration.h ('k') | webkit/child/ftp_directory_listing_response_delegate.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/child/fling_curve_configuration.cc
diff --git a/webkit/child/fling_curve_configuration.cc b/webkit/child/fling_curve_configuration.cc
index 154e33826819b72f0960b9c455649275a46c44aa..070513147c517c1bb6d5eae483afd31ac9faf1ab 100644
--- a/webkit/child/fling_curve_configuration.cc
+++ b/webkit/child/fling_curve_configuration.cc
@@ -24,10 +24,10 @@ void FlingCurveConfiguration::SetCurveParameters(
touchscreen_coefs_ = new_touchscreen;
}
-WebKit::WebGestureCurve* FlingCurveConfiguration::CreateCore(
+blink::WebGestureCurve* FlingCurveConfiguration::CreateCore(
const std::vector<float>& coefs,
- const WebKit::WebFloatPoint& velocity,
- const WebKit::WebSize& cumulativeScroll) {
+ const blink::WebFloatPoint& velocity,
+ const blink::WebSize& cumulativeScroll) {
float p0, p1, p2;
{
@@ -40,15 +40,15 @@ WebKit::WebGestureCurve* FlingCurveConfiguration::CreateCore(
return TouchFlingGestureCurve::Create(velocity, p0, p1, p2, cumulativeScroll);
}
-WebKit::WebGestureCurve* FlingCurveConfiguration::CreateForTouchPad(
- const WebKit::WebFloatPoint& velocity,
- const WebKit::WebSize& cumulativeScroll) {
+blink::WebGestureCurve* FlingCurveConfiguration::CreateForTouchPad(
+ const blink::WebFloatPoint& velocity,
+ const blink::WebSize& cumulativeScroll) {
return CreateCore(touchpad_coefs_, velocity, cumulativeScroll);
}
-WebKit::WebGestureCurve* FlingCurveConfiguration::CreateForTouchScreen(
- const WebKit::WebFloatPoint& velocity,
- const WebKit::WebSize& cumulativeScroll) {
+blink::WebGestureCurve* FlingCurveConfiguration::CreateForTouchScreen(
+ const blink::WebFloatPoint& velocity,
+ const blink::WebSize& cumulativeScroll) {
return CreateCore(touchscreen_coefs_, velocity, cumulativeScroll);
}
« no previous file with comments | « webkit/child/fling_curve_configuration.h ('k') | webkit/child/ftp_directory_listing_response_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698