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

Unified Diff: cc/layer_tree_host.h

Issue 11369109: cc: Rename PrioritizedTexture to PrioritizedResource. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month 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/image_layer_updater.cc ('k') | cc/layer_tree_host.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/layer_tree_host.h
diff --git a/cc/layer_tree_host.h b/cc/layer_tree_host.h
index a0234df4c6cd41f492a47dcbbdaf1b477864e499..c574888d59cdc87bfd34b4d3583a0e5367c49c3d 100644
--- a/cc/layer_tree_host.h
+++ b/cc/layer_tree_host.h
@@ -19,7 +19,7 @@
#include "cc/layer_tree_host_client.h"
#include "cc/layer_tree_host_common.h"
#include "cc/occlusion_tracker.h"
-#include "cc/prioritized_texture_manager.h"
+#include "cc/prioritized_resource_manager.h"
#include "cc/proxy.h"
#include "cc/rate_limiter.h"
#include "cc/rendering_stats.h"
@@ -44,7 +44,7 @@ class FontAtlas;
class Layer;
class LayerTreeHostImpl;
class LayerTreeHostImplClient;
-class PrioritizedTextureManager;
+class PrioritizedResourceManager;
class ResourceUpdateQueue;
class HeadsUpDisplayLayer;
class Region;
@@ -184,7 +184,7 @@ public:
void setHasTransparentBackground(bool transparent) { m_hasTransparentBackground = transparent; }
- PrioritizedTextureManager* contentsTextureManager() const;
+ PrioritizedResourceManager* contentsTextureManager() const;
bool visible() const { return m_visible; }
void setVisible(bool);
@@ -258,8 +258,8 @@ private:
scoped_refptr<Layer> m_rootLayer;
scoped_refptr<HeadsUpDisplayLayer> m_hudLayer;
- scoped_ptr<PrioritizedTextureManager> m_contentsTextureManager;
- scoped_ptr<PrioritizedTexture> m_surfaceMemoryPlaceholder;
+ scoped_ptr<PrioritizedResourceManager> m_contentsTextureManager;
+ scoped_ptr<PrioritizedResource> m_surfaceMemoryPlaceholder;
LayerTreeSettings m_settings;
@@ -280,7 +280,7 @@ private:
SkColor m_backgroundColor;
bool m_hasTransparentBackground;
- typedef ScopedPtrVector<PrioritizedTexture> TextureList;
+ typedef ScopedPtrVector<PrioritizedResource> TextureList;
size_t m_partialTextureUpdateRequests;
static bool s_needsFilterContext;
« no previous file with comments | « cc/image_layer_updater.cc ('k') | cc/layer_tree_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698