diff options
Diffstat (limited to 'webkit/compositor_bindings')
-rw-r--r-- | webkit/compositor_bindings/web_external_texture_layer_impl.cc | 10 | ||||
-rw-r--r-- | webkit/compositor_bindings/web_external_texture_layer_impl.h | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/webkit/compositor_bindings/web_external_texture_layer_impl.cc b/webkit/compositor_bindings/web_external_texture_layer_impl.cc index 60fb4d2..b47dff9 100644 --- a/webkit/compositor_bindings/web_external_texture_layer_impl.cc +++ b/webkit/compositor_bindings/web_external_texture_layer_impl.cc @@ -5,13 +5,13 @@ #include "config.h" #include "web_external_texture_layer_impl.h" +#include "cc/resource_update_queue.h" #include "cc/texture_layer.h" -#include "cc/texture_update_queue.h" #include "third_party/WebKit/Source/Platform/chromium/public/WebExternalTextureLayerClient.h" #include "third_party/WebKit/Source/Platform/chromium/public/WebFloatRect.h" #include "third_party/WebKit/Source/Platform/chromium/public/WebSize.h" -#include "webcore_convert.h" #include "web_layer_impl.h" +#include "webcore_convert.h" using namespace cc; @@ -81,7 +81,7 @@ void WebExternalTextureLayerImpl::setRateLimitContext(bool rateLimit) class WebTextureUpdaterImpl : public WebTextureUpdater { public: - explicit WebTextureUpdaterImpl(TextureUpdateQueue& queue) + explicit WebTextureUpdaterImpl(ResourceUpdateQueue& queue) : m_queue(queue) { } @@ -93,10 +93,10 @@ public: } private: - TextureUpdateQueue& m_queue; + ResourceUpdateQueue& m_queue; }; -unsigned WebExternalTextureLayerImpl::prepareTexture(TextureUpdateQueue& queue) +unsigned WebExternalTextureLayerImpl::prepareTexture(ResourceUpdateQueue& queue) { ASSERT(m_client); WebTextureUpdaterImpl updaterImpl(queue); diff --git a/webkit/compositor_bindings/web_external_texture_layer_impl.h b/webkit/compositor_bindings/web_external_texture_layer_impl.h index cf82629..95f6df45c 100644 --- a/webkit/compositor_bindings/web_external_texture_layer_impl.h +++ b/webkit/compositor_bindings/web_external_texture_layer_impl.h @@ -30,7 +30,7 @@ public: virtual void setRateLimitContext(bool) OVERRIDE; // TextureLayerClient implementation. - virtual unsigned prepareTexture(cc::TextureUpdateQueue&) OVERRIDE; + virtual unsigned prepareTexture(cc::ResourceUpdateQueue&) OVERRIDE; virtual WebGraphicsContext3D* context() OVERRIDE; private: |