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

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: 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
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);
« cc/tiled_layer_unittest.cc ('K') | « 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