Index: webkit/compositor_bindings/WebContentLayerImpl.cpp |
diff --git a/webkit/compositor_bindings/WebContentLayerImpl.cpp b/webkit/compositor_bindings/WebContentLayerImpl.cpp |
index 1f074160654f84d0b9caa2785a22fe568b7bc21b..76e51564363489a9748dbae1228548e6926a031d 100644 |
--- a/webkit/compositor_bindings/WebContentLayerImpl.cpp |
+++ b/webkit/compositor_bindings/WebContentLayerImpl.cpp |
@@ -26,7 +26,7 @@ WebContentLayer* WebContentLayer::create(WebContentLayerClient* client) |
} |
WebContentLayerImpl::WebContentLayerImpl(WebContentLayerClient* client) |
- : m_layer(new WebLayerImpl(ContentLayerChromium::create(this))) |
+ : m_layer(new WebLayerImpl(ContentLayer::create(this))) |
, m_client(client) |
{ |
m_layer->layer()->setIsDrawable(true); |
@@ -34,7 +34,7 @@ WebContentLayerImpl::WebContentLayerImpl(WebContentLayerClient* client) |
WebContentLayerImpl::~WebContentLayerImpl() |
{ |
- static_cast<ContentLayerChromium*>(m_layer->layer())->clearClient(); |
+ static_cast<ContentLayer*>(m_layer->layer())->clearClient(); |
} |
WebLayer* WebContentLayerImpl::layer() |