| Index: webkit/compositor_bindings/WebIOSurfaceLayerImpl.cpp
|
| diff --git a/webkit/compositor_bindings/WebIOSurfaceLayerImpl.cpp b/webkit/compositor_bindings/WebIOSurfaceLayerImpl.cpp
|
| index 251f06a918c2b0331ba4066571334944f912186e..ed3b99ab34177eb1b0fdf29512524e975c58b581 100644
|
| --- a/webkit/compositor_bindings/WebIOSurfaceLayerImpl.cpp
|
| +++ b/webkit/compositor_bindings/WebIOSurfaceLayerImpl.cpp
|
| @@ -7,6 +7,7 @@
|
|
|
| #include "IOSurfaceLayerChromium.h"
|
| #include "WebLayerImpl.h"
|
| +#include "webcore_convert.h"
|
|
|
| using WebCore::IOSurfaceLayerChromium;
|
|
|
| @@ -29,7 +30,7 @@ WebIOSurfaceLayerImpl::~WebIOSurfaceLayerImpl()
|
|
|
| void WebIOSurfaceLayerImpl::setIOSurfaceProperties(unsigned ioSurfaceId, WebSize size)
|
| {
|
| - static_cast<IOSurfaceLayerChromium*>(m_layer->layer())->setIOSurfaceProperties(ioSurfaceId, size);
|
| + static_cast<IOSurfaceLayerChromium*>(m_layer->layer())->setIOSurfaceProperties(ioSurfaceId, convert(size));
|
| }
|
|
|
| WebLayer* WebIOSurfaceLayerImpl::layer()
|
|
|