diff options
Diffstat (limited to 'cc/skpicture_content_layer_updater.h')
-rw-r--r-- | cc/skpicture_content_layer_updater.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cc/skpicture_content_layer_updater.h b/cc/skpicture_content_layer_updater.h index 685ee39..72305cd 100644 --- a/cc/skpicture_content_layer_updater.h +++ b/cc/skpicture_content_layer_updater.h @@ -27,7 +27,7 @@ public: Resource(SkPictureContentLayerUpdater*, scoped_ptr<PrioritizedTexture>); virtual ~Resource(); - virtual void update(TextureUpdateQueue&, const IntRect& sourceRect, const IntSize& destOffset, bool partialUpdate, RenderingStats&) OVERRIDE; + virtual void update(ResourceUpdateQueue&, const IntRect& sourceRect, const IntSize& destOffset, bool partialUpdate, RenderingStats&) OVERRIDE; private: SkPictureContentLayerUpdater* updater() { return m_updater; } @@ -46,7 +46,7 @@ protected: virtual void prepareToUpdate(const IntRect& contentRect, const IntSize& tileSize, float contentsWidthScale, float contentsHeightScale, IntRect& resultingOpaqueRect, RenderingStats&) OVERRIDE; void drawPicture(SkCanvas*); - void updateTexture(TextureUpdateQueue& queue, PrioritizedTexture* texture, const IntRect& sourceRect, const IntSize& destOffset, bool partialUpdate); + void updateTexture(ResourceUpdateQueue& queue, PrioritizedTexture* texture, const IntRect& sourceRect, const IntSize& destOffset, bool partialUpdate); bool layerIsOpaque() const { return m_layerIsOpaque; } |