Chromium Code Reviews| 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 60fb4d2e9f23df20ad2e9c52c11cca39d9a264b3..1a9bc0bb1ade534563a114cee980577fa9967896 100644 |
| --- a/webkit/compositor_bindings/web_external_texture_layer_impl.cc |
| +++ b/webkit/compositor_bindings/web_external_texture_layer_impl.cc |
| @@ -6,7 +6,7 @@ |
| #include "web_external_texture_layer_impl.h" |
| #include "cc/texture_layer.h" |
| -#include "cc/texture_update_queue.h" |
| +#include "cc/resource_update_queue.h" |
|
enne (OOO)
2012/10/25 20:54:30
Sorting.
reveman
2012/10/25 21:07:45
Done.
|
| #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" |
| @@ -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); |