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

Unified Diff: cc/resource_update_queue.h

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 | « cc/resource_update_controller_unittest.cc ('k') | cc/resource_update_queue.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/resource_update_queue.h
diff --git a/cc/texture_update_queue.h b/cc/resource_update_queue.h
similarity index 82%
rename from cc/texture_update_queue.h
rename to cc/resource_update_queue.h
index 933929b214a3fe3c0443e80049155dcf362f691d..a9c0fbc5944616cd943177bd035f76b05d3722ff 100644
--- a/cc/texture_update_queue.h
+++ b/cc/resource_update_queue.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CCTextureUpdateQueue_h
-#define CCTextureUpdateQueue_h
+#ifndef CCResourceUpdateQueue_h
+#define CCResourceUpdateQueue_h
#include "base/basictypes.h"
#include "cc/resource_update.h"
@@ -12,10 +12,10 @@
namespace cc {
-class TextureUpdateQueue {
+class ResourceUpdateQueue {
public:
- TextureUpdateQueue();
- virtual ~TextureUpdateQueue();
+ ResourceUpdateQueue();
+ virtual ~ResourceUpdateQueue();
void appendFullUpload(const ResourceUpdate&);
void appendPartialUpload(const ResourceUpdate&);
@@ -39,9 +39,9 @@ private:
std::deque<ResourceUpdate> m_partialEntries;
std::deque<TextureCopier::Parameters> m_copyEntries;
- DISALLOW_COPY_AND_ASSIGN(TextureUpdateQueue);
+ DISALLOW_COPY_AND_ASSIGN(ResourceUpdateQueue);
};
}
-#endif // CCTextureUpdateQueue_h
+#endif // CCResourceUpdateQueue_h
« no previous file with comments | « cc/resource_update_controller_unittest.cc ('k') | cc/resource_update_queue.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698