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

Unified Diff: webkit/renderer/compositor_bindings/web_content_layer_impl.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
Index: webkit/renderer/compositor_bindings/web_content_layer_impl.h
diff --git a/webkit/renderer/compositor_bindings/web_content_layer_impl.h b/webkit/renderer/compositor_bindings/web_content_layer_impl.h
index eb66abaedfa5e51d00bfd4a5a093b0feb35c38f6..382b580e2a2fd3ddd6c224d21f87c5615207f341 100644
--- a/webkit/renderer/compositor_bindings/web_content_layer_impl.h
+++ b/webkit/renderer/compositor_bindings/web_content_layer_impl.h
@@ -16,18 +16,18 @@ class IntRect;
class FloatRect;
}
-namespace WebKit { class WebContentLayerClient; }
+namespace blink { class WebContentLayerClient; }
namespace webkit {
-class WebContentLayerImpl : public WebKit::WebContentLayer,
+class WebContentLayerImpl : public blink::WebContentLayer,
public cc::ContentLayerClient {
public:
WEBKIT_COMPOSITOR_BINDINGS_EXPORT explicit WebContentLayerImpl(
- WebKit::WebContentLayerClient*);
+ blink::WebContentLayerClient*);
// WebContentLayer implementation.
- virtual WebKit::WebLayer* layer();
+ virtual blink::WebLayer* layer();
virtual void setDoubleSided(bool double_sided);
virtual void setDrawCheckerboardForMissingTiles(bool checkerboard);
@@ -41,7 +41,7 @@ class WebContentLayerImpl : public WebKit::WebContentLayer,
virtual void DidChangeLayerCanUseLCDText() OVERRIDE;
scoped_ptr<WebLayerImpl> layer_;
- WebKit::WebContentLayerClient* client_;
+ blink::WebContentLayerClient* client_;
bool draws_content_;
private:

Powered by Google App Engine
This is Rietveld 408576698