| Index: cc/tiled_layer.h
|
| diff --git a/cc/tiled_layer.h b/cc/tiled_layer.h
|
| index d3ec8562cf03d0afb63cc1440c146aa450b1a21e..c6cb5412b93b9b31f22f822ddc5ba73c2a18af01 100644
|
| --- a/cc/tiled_layer.h
|
| +++ b/cc/tiled_layer.h
|
| @@ -35,7 +35,7 @@ public:
|
|
|
| virtual Region visibleContentOpaqueRegion() const OVERRIDE;
|
|
|
| - virtual void update(TextureUpdateQueue&, const OcclusionTracker*, RenderingStats&) OVERRIDE;
|
| + virtual void update(ResourceUpdateQueue&, const OcclusionTracker*, RenderingStats&) OVERRIDE;
|
|
|
| protected:
|
| TiledLayer();
|
| @@ -79,10 +79,10 @@ private:
|
|
|
| void markOcclusionsAndRequestTextures(int left, int top, int right, int bottom, const OcclusionTracker*);
|
|
|
| - bool updateTiles(int left, int top, int right, int bottom, TextureUpdateQueue&, const OcclusionTracker*, RenderingStats&, bool& didPaint);
|
| + bool updateTiles(int left, int top, int right, int bottom, ResourceUpdateQueue&, const OcclusionTracker*, RenderingStats&, bool& didPaint);
|
| bool haveTexturesForTiles(int left, int top, int right, int bottom, bool ignoreOcclusions);
|
| IntRect markTilesForUpdate(int left, int top, int right, int bottom, bool ignoreOcclusions);
|
| - void updateTileTextures(const IntRect& paintRect, int left, int top, int right, int bottom, TextureUpdateQueue&, const OcclusionTracker*, RenderingStats&);
|
| + void updateTileTextures(const IntRect& paintRect, int left, int top, int right, int bottom, ResourceUpdateQueue&, const OcclusionTracker*, RenderingStats&);
|
| void updateScrollPrediction();
|
|
|
| UpdatableTile* tileAt(int, int) const;
|
|
|