Index: Source/platform/graphics/GraphicsLayer.cpp |
diff --git a/Source/platform/graphics/GraphicsLayer.cpp b/Source/platform/graphics/GraphicsLayer.cpp |
index a33755e2bf53a629c1c2bf846cdacbefe7e2c7bc..7880b3d0d7a88188da7f0935a6d7d0fdb04db183 100644 |
--- a/Source/platform/graphics/GraphicsLayer.cpp |
+++ b/Source/platform/graphics/GraphicsLayer.cpp |
@@ -64,7 +64,7 @@ using blink::WebFilterOperations; |
using blink::WebLayer; |
using blink::WebPoint; |
-namespace WebCore { |
+namespace blink { |
typedef HashMap<const GraphicsLayer*, Vector<FloatRect> > RepaintMap; |
static RepaintMap& repaintRectMap() |
@@ -1122,15 +1122,15 @@ void GraphicsLayer::didScroll() |
m_scrollableArea->scrollToOffsetWithoutAnimation(m_scrollableArea->minimumScrollPosition() + toIntSize(m_layer->layer()->scrollPosition())); |
} |
-} // namespace WebCore |
+} // namespace blink |
#ifndef NDEBUG |
-void showGraphicsLayerTree(const WebCore::GraphicsLayer* layer) |
+void showGraphicsLayerTree(const blink::GraphicsLayer* layer) |
{ |
if (!layer) |
return; |
- String output = layer->layerTreeAsText(WebCore::LayerTreeIncludesDebugInfo); |
+ String output = layer->layerTreeAsText(blink::LayerTreeIncludesDebugInfo); |
fprintf(stderr, "%s\n", output.utf8().data()); |
} |
#endif |