Chromium Code Reviews| Index: Source/web/painting/ContinuousPainter.h |
| diff --git a/Source/web/painting/ContinuousPainter.h b/Source/web/painting/ContinuousPainter.h |
| index cde9579a75c300ba78d1745c7cbe78cc8c4efb79..8a1b20371e99f8eb483ee131fbdc24d63bec3bc3 100644 |
| --- a/Source/web/painting/ContinuousPainter.h |
| +++ b/Source/web/painting/ContinuousPainter.h |
| @@ -31,7 +31,6 @@ |
| namespace blink { |
| class GraphicsLayer; |
| -class PageOverlayList; |
| // This class is responsible for calling setNeedsDisplay on all |
| // GraphicsLayers in continuous painting mode. |
| @@ -40,7 +39,7 @@ public: |
| // Calls setNeedsDisplay on the layer, then recursively calls |
| // on mask layers, replica layers and all child layers. |
| // Overlays are excluded, because they impact the page paint time metric. |
| - static void setNeedsDisplayRecursive(GraphicsLayer*, PageOverlayList*); |
| + static void setNeedsDisplayRecursive(GraphicsLayer*, GraphicsLayer*); |
|
dgozman
2015/07/30 10:17:31
GraphicsLayer* overlay
sergeyv
2015/07/30 11:42:37
Done.
|
| }; |
| } // namespace blink |