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

Unified Diff: webkit/renderer/compositor_bindings/web_content_layer_impl.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
Index: webkit/renderer/compositor_bindings/web_content_layer_impl.cc
diff --git a/webkit/renderer/compositor_bindings/web_content_layer_impl.cc b/webkit/renderer/compositor_bindings/web_content_layer_impl.cc
index eb92d982b5d876100935431c346687cbf5b090a0..381501a4a1b49735651a83444b0ea14c255a9bb9 100644
--- a/webkit/renderer/compositor_bindings/web_content_layer_impl.cc
+++ b/webkit/renderer/compositor_bindings/web_content_layer_impl.cc
@@ -24,7 +24,7 @@ static bool usingPictureLayer() {
return cc::switches::IsImplSidePaintingEnabled();
}
-WebContentLayerImpl::WebContentLayerImpl(WebKit::WebContentLayerClient* client)
+WebContentLayerImpl::WebContentLayerImpl(blink::WebContentLayerClient* client)
: client_(client),
ignore_lcd_text_change_(false) {
if (usingPictureLayer())
@@ -42,7 +42,7 @@ WebContentLayerImpl::~WebContentLayerImpl() {
static_cast<ContentLayer*>(layer_->layer())->ClearClient();
}
-WebKit::WebLayer* WebContentLayerImpl::layer() { return layer_.get(); }
+blink::WebLayer* WebContentLayerImpl::layer() { return layer_.get(); }
void WebContentLayerImpl::setDoubleSided(bool double_sided) {
layer_->layer()->SetDoubleSided(double_sided);
@@ -58,7 +58,7 @@ void WebContentLayerImpl::PaintContents(SkCanvas* canvas,
if (!client_)
return;
- WebKit::WebFloatRect web_opaque;
+ blink::WebFloatRect web_opaque;
// For picture layers, always record with LCD text. PictureLayerImpl
// will turn this off later during rasterization.
bool use_lcd_text = usingPictureLayer() || can_use_lcd_text_;

Powered by Google App Engine
This is Rietveld 408576698