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

Unified Diff: content/test/web_gesture_curve_mock.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/test/test_webkit_platform_support.cc ('k') | content/test/web_gesture_curve_mock.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/web_gesture_curve_mock.h
diff --git a/content/test/web_gesture_curve_mock.h b/content/test/web_gesture_curve_mock.h
index d58137f7700d79abda0b1682dae31b7cae515876..e103c175e99330f4c4b2cacd0c39039d98d4052d 100644
--- a/content/test/web_gesture_curve_mock.h
+++ b/content/test/web_gesture_curve_mock.h
@@ -12,19 +12,19 @@
// A simple class for mocking a WebGestureCurve. The curve flings at velocity
// indefinitely.
-class WebGestureCurveMock : public WebKit::WebGestureCurve {
+class WebGestureCurveMock : public blink::WebGestureCurve {
public:
- WebGestureCurveMock(const WebKit::WebFloatPoint& velocity,
- const WebKit::WebSize& cumulative_scroll);
+ WebGestureCurveMock(const blink::WebFloatPoint& velocity,
+ const blink::WebSize& cumulative_scroll);
virtual ~WebGestureCurveMock();
// Returns false if curve has finished and can no longer be applied.
virtual bool apply(double time,
- WebKit::WebGestureCurveTarget* target) OVERRIDE;
+ blink::WebGestureCurveTarget* target) OVERRIDE;
private:
- WebKit::WebFloatPoint velocity_;
- WebKit::WebSize cumulative_scroll_;
+ blink::WebFloatPoint velocity_;
+ blink::WebSize cumulative_scroll_;
DISALLOW_COPY_AND_ASSIGN(WebGestureCurveMock);
};
« no previous file with comments | « content/test/test_webkit_platform_support.cc ('k') | content/test/web_gesture_curve_mock.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698