| Index: webkit/compositor_bindings/web_io_surface_layer_impl.cc
|
| diff --git a/webkit/compositor_bindings/web_io_surface_layer_impl.cc b/webkit/compositor_bindings/web_io_surface_layer_impl.cc
|
| index ee56546c4d6e93c6c94340beecab4e92a7e98776..3469503b66418d2c30d3ea160ae135191dc5d6e3 100644
|
| --- a/webkit/compositor_bindings/web_io_surface_layer_impl.cc
|
| +++ b/webkit/compositor_bindings/web_io_surface_layer_impl.cc
|
| @@ -6,7 +6,6 @@
|
| #include "web_io_surface_layer_impl.h"
|
|
|
| #include "cc/io_surface_layer.h"
|
| -#include "webcore_convert.h"
|
| #include "web_layer_impl.h"
|
|
|
| using cc::IOSurfaceLayer;
|
| @@ -30,7 +29,7 @@ WebIOSurfaceLayerImpl::~WebIOSurfaceLayerImpl()
|
|
|
| void WebIOSurfaceLayerImpl::setIOSurfaceProperties(unsigned ioSurfaceId, WebSize size)
|
| {
|
| - static_cast<IOSurfaceLayer*>(m_layer->layer())->setIOSurfaceProperties(ioSurfaceId, convert(size));
|
| + static_cast<IOSurfaceLayer*>(m_layer->layer())->setIOSurfaceProperties(ioSurfaceId, size);
|
| }
|
|
|
| WebLayer* WebIOSurfaceLayerImpl::layer()
|
|
|