| Index: cc/tiled_layer.h
|
| diff --git a/cc/tiled_layer.h b/cc/tiled_layer.h
|
| index 95fb84379782c037290a952f06ce4a3b2b8d3cae..6903fd54ff6cd58ce307dda003cb27d49be71d47 100644
|
| --- a/cc/tiled_layer.h
|
| +++ b/cc/tiled_layer.h
|
| @@ -35,7 +35,7 @@ public:
|
|
|
| virtual Region visibleContentOpaqueRegion() const OVERRIDE;
|
|
|
| - virtual void update(ResourceUpdateQueue&, const OcclusionTracker*, RenderingStats&) OVERRIDE;
|
| + virtual void update(ResourceUpdateQueue&, const OcclusionTracker*, RenderingStats*) OVERRIDE;
|
|
|
| protected:
|
| TiledLayer();
|
| @@ -81,10 +81,10 @@ private:
|
|
|
| void markOcclusionsAndRequestTextures(int left, int top, int right, int bottom, const OcclusionTracker*);
|
|
|
| - bool updateTiles(int left, int top, int right, int bottom, ResourceUpdateQueue&, 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);
|
| gfx::Rect markTilesForUpdate(int left, int top, int right, int bottom, bool ignoreOcclusions);
|
| - void updateTileTextures(const gfx::Rect& paintRect, int left, int top, int right, int bottom, ResourceUpdateQueue&, const OcclusionTracker*, RenderingStats&);
|
| + void updateTileTextures(const gfx::Rect& paintRect, int left, int top, int right, int bottom, ResourceUpdateQueue&, const OcclusionTracker*, RenderingStats*);
|
| void updateScrollPrediction();
|
|
|
| UpdatableTile* tileAt(int, int) const;
|
|
|