| Index: cc/layers/heads_up_display_layer_impl.h
|
| diff --git a/cc/layers/heads_up_display_layer_impl.h b/cc/layers/heads_up_display_layer_impl.h
|
| index 0663b8254179d571bd1bad0a3147b218e7e5c611..7426b4145c3bab6bb6a4964d04e7b702880b04cb 100644
|
| --- a/cc/layers/heads_up_display_layer_impl.h
|
| +++ b/cc/layers/heads_up_display_layer_impl.h
|
| @@ -93,7 +93,8 @@ class CC_EXPORT HeadsUpDisplayLayerImpl : public LayerImpl {
|
| const SkPoint& pos) const;
|
| void DrawGraphBackground(SkCanvas* canvas,
|
| SkPaint* paint,
|
| - const SkRect& bounds) const;
|
| + const SkRect& bounds,
|
| + bool rounded) const;
|
| void DrawGraphLines(SkCanvas* canvas,
|
| SkPaint* paint,
|
| const SkRect& bounds,
|
| @@ -102,15 +103,22 @@ class CC_EXPORT HeadsUpDisplayLayerImpl : public LayerImpl {
|
| SkRect DrawFPSDisplay(SkCanvas* canvas,
|
| const FrameRateCounter* fps_counter,
|
| int right,
|
| - int top) const;
|
| + int top,
|
| + bool last_display) const;
|
| SkRect DrawMemoryDisplay(SkCanvas* canvas,
|
| int top,
|
| int right,
|
| - int width) const;
|
| + int width,
|
| + bool last_display) const;
|
| SkRect DrawGpuRasterizationStatus(SkCanvas* canvas,
|
| int right,
|
| int top,
|
| - int width) const;
|
| + int width,
|
| + bool last_display) const;
|
| + SkRect DrawDisplaySeparator(SkCanvas* canvas,
|
| + int right,
|
| + int top,
|
| + int width) const;
|
| void DrawDebugRect(SkCanvas* canvas,
|
| SkPaint* paint,
|
| const DebugRect& rect,
|
|
|