Index: webkit/compositor_bindings/WebIOSurfaceLayerImpl.cpp |
diff --git a/webkit/compositor_bindings/WebIOSurfaceLayerImpl.cpp b/webkit/compositor_bindings/WebIOSurfaceLayerImpl.cpp |
index 0d9f5d649a59d3b608360575441654dedf04cebf..8fec413a68543b710cdfcd20b996b1d093d44f30 100644 |
--- a/webkit/compositor_bindings/WebIOSurfaceLayerImpl.cpp |
+++ b/webkit/compositor_bindings/WebIOSurfaceLayerImpl.cpp |
@@ -9,7 +9,7 @@ |
#include "cc/io_surface_layer.h" |
#include "webcore_convert.h" |
-using cc::IOSurfaceLayerChromium; |
+using cc::IOSurfaceLayer; |
namespace WebKit { |
@@ -19,7 +19,7 @@ WebIOSurfaceLayer* WebIOSurfaceLayer::create() |
} |
WebIOSurfaceLayerImpl::WebIOSurfaceLayerImpl() |
- : m_layer(new WebLayerImpl(IOSurfaceLayerChromium::create())) |
+ : m_layer(new WebLayerImpl(IOSurfaceLayer::create())) |
{ |
m_layer->layer()->setIsDrawable(true); |
} |
@@ -30,7 +30,7 @@ WebIOSurfaceLayerImpl::~WebIOSurfaceLayerImpl() |
void WebIOSurfaceLayerImpl::setIOSurfaceProperties(unsigned ioSurfaceId, WebSize size) |
{ |
- static_cast<IOSurfaceLayerChromium*>(m_layer->layer())->setIOSurfaceProperties(ioSurfaceId, convert(size)); |
+ static_cast<IOSurfaceLayer*>(m_layer->layer())->setIOSurfaceProperties(ioSurfaceId, convert(size)); |
} |
WebLayer* WebIOSurfaceLayerImpl::layer() |