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

Unified Diff: Source/core/platform/graphics/GraphicsLayer.cpp

Issue 61773005: Rename WebKit namespace to blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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 | « Source/core/platform/graphics/GraphicsLayer.h ('k') | Source/core/platform/graphics/Image.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/platform/graphics/GraphicsLayer.cpp
diff --git a/Source/core/platform/graphics/GraphicsLayer.cpp b/Source/core/platform/graphics/GraphicsLayer.cpp
index 238bac84701dbcee9e4744399418c62681725c30..1960fec89e6757020ba59e092b2af668124d5da1 100644
--- a/Source/core/platform/graphics/GraphicsLayer.cpp
+++ b/Source/core/platform/graphics/GraphicsLayer.cpp
@@ -58,11 +58,11 @@
#include <stdio.h>
#endif
-using WebKit::Platform;
-using WebKit::WebAnimation;
-using WebKit::WebFilterOperations;
-using WebKit::WebLayer;
-using WebKit::WebPoint;
+using blink::Platform;
+using blink::WebAnimation;
+using blink::WebFilterOperations;
+using blink::WebLayer;
+using blink::WebPoint;
namespace WebCore {
@@ -103,7 +103,7 @@ GraphicsLayer::GraphicsLayer(GraphicsLayerClient* client)
, m_contentsLayerId(0)
, m_contentsLayerPurpose(NoContentsLayer)
, m_scrollableArea(0)
- , m_compositingReasons(WebKit::CompositingReasonUnknown)
+ , m_compositingReasons(blink::CompositingReasonUnknown)
{
#ifndef NDEBUG
if (m_client)
@@ -756,7 +756,7 @@ String GraphicsLayer::layerTreeAsText(LayerTreeFlags flags) const
return ts.release();
}
-WebKit::WebString GraphicsLayer::debugName(WebKit::WebLayer* webLayer)
+blink::WebString GraphicsLayer::debugName(blink::WebLayer* webLayer)
{
String name;
if (!m_client)
@@ -782,7 +782,7 @@ WebKit::WebString GraphicsLayer::debugName(WebKit::WebLayer* webLayer)
return name;
}
-void GraphicsLayer::setCompositingReasons(WebKit::WebCompositingReasons reasons)
+void GraphicsLayer::setCompositingReasons(blink::WebCompositingReasons reasons)
{
m_compositingReasons = reasons;
m_layer->layer()->setCompositingReasons(reasons);
@@ -868,13 +868,13 @@ void GraphicsLayer::setContentsVisible(bool contentsVisible)
updateLayerIsDrawable();
}
-void GraphicsLayer::setClipParent(WebKit::WebLayer* parent)
+void GraphicsLayer::setClipParent(blink::WebLayer* parent)
{
m_hasClipParent = !!parent;
m_layer->layer()->setClipParent(parent);
}
-void GraphicsLayer::setScrollParent(WebKit::WebLayer* parent)
+void GraphicsLayer::setScrollParent(blink::WebLayer* parent)
{
m_hasScrollParent = !!parent;
m_layer->layer()->setScrollParent(parent);
« no previous file with comments | « Source/core/platform/graphics/GraphicsLayer.h ('k') | Source/core/platform/graphics/Image.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698