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

Unified Diff: content/test/web_layer_tree_view_impl_for_testing.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/web_gesture_curve_mock.cc ('k') | content/test/web_layer_tree_view_impl_for_testing.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/web_layer_tree_view_impl_for_testing.h
diff --git a/content/test/web_layer_tree_view_impl_for_testing.h b/content/test/web_layer_tree_view_impl_for_testing.h
index 8811ac042ad2817201287734fe9b79df89e11768..fc690a2c2397a3617da176873361ece120059f72 100644
--- a/content/test/web_layer_tree_view_impl_for_testing.h
+++ b/content/test/web_layer_tree_view_impl_for_testing.h
@@ -13,11 +13,11 @@ namespace cc {
class LayerTreeHost;
}
-namespace WebKit { class WebLayer; }
+namespace blink { class WebLayer; }
namespace webkit {
-class WebLayerTreeViewImplForTesting : public WebKit::WebLayerTreeView,
+class WebLayerTreeViewImplForTesting : public blink::WebLayerTreeView,
public cc::LayerTreeHostClient {
public:
WebLayerTreeViewImplForTesting();
@@ -25,23 +25,23 @@ class WebLayerTreeViewImplForTesting : public WebKit::WebLayerTreeView,
bool Initialize();
- // WebKit::WebLayerTreeView implementation.
+ // blink::WebLayerTreeView implementation.
virtual void setSurfaceReady();
- virtual void setRootLayer(const WebKit::WebLayer& layer);
+ virtual void setRootLayer(const blink::WebLayer& layer);
virtual void clearRootLayer();
- virtual void setViewportSize(const WebKit::WebSize& unused_deprecated,
- const WebKit::WebSize& device_viewport_size);
- virtual WebKit::WebSize layoutViewportSize() const;
- virtual WebKit::WebSize deviceViewportSize() const;
+ virtual void setViewportSize(const blink::WebSize& unused_deprecated,
+ const blink::WebSize& device_viewport_size);
+ virtual blink::WebSize layoutViewportSize() const;
+ virtual blink::WebSize deviceViewportSize() const;
virtual void setDeviceScaleFactor(float scale_factor);
virtual float deviceScaleFactor() const;
- virtual void setBackgroundColor(WebKit::WebColor);
+ virtual void setBackgroundColor(blink::WebColor);
virtual void setHasTransparentBackground(bool transparent);
virtual void setVisible(bool visible);
virtual void setPageScaleFactorAndLimits(float page_scale_factor,
float minimum,
float maximum);
- virtual void startPageScaleAnimation(const WebKit::WebPoint& destination,
+ virtual void startPageScaleAnimation(const blink::WebPoint& destination,
bool use_anchor,
float new_page_scale,
double duration_sec);
@@ -50,11 +50,11 @@ class WebLayerTreeViewImplForTesting : public WebKit::WebLayerTreeView,
virtual bool commitRequested() const;
virtual void composite();
virtual void didStopFlinging();
- virtual bool compositeAndReadback(void* pixels, const WebKit::WebRect& rect);
+ virtual bool compositeAndReadback(void* pixels, const blink::WebRect& rect);
virtual void finishAllRendering();
virtual void setDeferCommits(bool defer_commits);
virtual void renderingStats(
- WebKit::WebRenderingStats& stats) const; // NOLINT(runtime/references)
+ blink::WebRenderingStats& stats) const; // NOLINT(runtime/references)
// cc::LayerTreeHostClient implementation.
virtual void WillBeginMainFrame() OVERRIDE {}
« no previous file with comments | « content/test/web_gesture_curve_mock.cc ('k') | content/test/web_layer_tree_view_impl_for_testing.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698