| Index: webkit/compositor_bindings/web_external_texture_layer_impl.cc
|
| diff --git a/webkit/compositor_bindings/web_external_texture_layer_impl.cc b/webkit/compositor_bindings/web_external_texture_layer_impl.cc
|
| index e43e4f14dc011619f88cd556992347f551997c85..54e71ad42b804d17975a8ed45111f1edf8a6df89 100644
|
| --- a/webkit/compositor_bindings/web_external_texture_layer_impl.cc
|
| +++ b/webkit/compositor_bindings/web_external_texture_layer_impl.cc
|
| @@ -11,7 +11,6 @@
|
| #include "third_party/WebKit/Source/Platform/chromium/public/WebFloatRect.h"
|
| #include "third_party/WebKit/Source/Platform/chromium/public/WebSize.h"
|
| #include "web_layer_impl.h"
|
| -#include "webcore_convert.h"
|
|
|
| using namespace cc;
|
|
|
| @@ -88,7 +87,7 @@ public:
|
|
|
| virtual void appendCopy(unsigned sourceTexture, unsigned destinationTexture, WebSize size) OVERRIDE
|
| {
|
| - TextureCopier::Parameters copy = { sourceTexture, destinationTexture, convert(size) };
|
| + TextureCopier::Parameters copy = { sourceTexture, destinationTexture, size };
|
| m_queue.appendCopy(copy);
|
| }
|
|
|
|
|