Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(581)

Unified Diff: webkit/compositor_bindings/web_external_texture_layer_impl.cc

Issue 11270047: cc: Rename TextureUpdate to ResourceUpdate. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Sort includes and forward declarations. Created 8 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/compositor_bindings/web_external_texture_layer_impl.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..b47dff97cada781410e60ba3618cb3fa43f44a21 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);
« no previous file with comments | « webkit/compositor_bindings/web_external_texture_layer_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698