summaryrefslogtreecommitdiffstats
path: root/cc/image_layer_updater.h
diff options
context:
space:
mode:
Diffstat (limited to 'cc/image_layer_updater.h')
-rw-r--r--cc/image_layer_updater.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cc/image_layer_updater.h b/cc/image_layer_updater.h
index 89c26b2..3a70dd3 100644
--- a/cc/image_layer_updater.h
+++ b/cc/image_layer_updater.h
@@ -17,7 +17,7 @@ class ImageLayerUpdater : public LayerUpdater {
public:
class Resource : public LayerUpdater::Resource {
public:
- Resource(ImageLayerUpdater* updater, scoped_ptr<PrioritizedTexture> texture)
+ Resource(ImageLayerUpdater* updater, scoped_ptr<PrioritizedResource> texture)
: LayerUpdater::Resource(texture.Pass())
, m_updater(updater)
{
@@ -32,9 +32,9 @@ public:
static scoped_refptr<ImageLayerUpdater> create();
virtual scoped_ptr<LayerUpdater::Resource> createResource(
- PrioritizedTextureManager*) OVERRIDE;
+ PrioritizedResourceManager*) OVERRIDE;
- void updateTexture(ResourceUpdateQueue&, PrioritizedTexture*, const gfx::Rect& sourceRect, const gfx::Vector2d& destOffset, bool partialUpdate);
+ void updateTexture(ResourceUpdateQueue&, PrioritizedResource*, const gfx::Rect& sourceRect, const gfx::Vector2d& destOffset, bool partialUpdate);
void setBitmap(const SkBitmap&);