| Index: cc/test/skia_common.h
|
| diff --git a/cc/test/skia_common.h b/cc/test/skia_common.h
|
| index 2de9e8e931cd9803312b002f5b626c44fd24d1c6..bf18e379d88848d418d3b194b76889c653b6597d 100644
|
| --- a/cc/test/skia_common.h
|
| +++ b/cc/test/skia_common.h
|
| @@ -21,11 +21,12 @@ class DisplayItemList;
|
|
|
| void DrawDisplayList(unsigned char* buffer,
|
| const gfx::Rect& layer_rect,
|
| - scoped_refptr<DisplayItemList> list);
|
| + scoped_refptr<const DisplayItemList> list);
|
|
|
| -bool AreDisplayListDrawingResultsSame(const gfx::Rect& layer_rect,
|
| - scoped_refptr<DisplayItemList> list_a,
|
| - scoped_refptr<DisplayItemList> list_b);
|
| +bool AreDisplayListDrawingResultsSame(
|
| + const gfx::Rect& layer_rect,
|
| + scoped_refptr<const DisplayItemList> list_a,
|
| + scoped_refptr<const DisplayItemList> list_b);
|
|
|
| sk_sp<SkImage> CreateDiscardableImage(const gfx::Size& size);
|
|
|
|
|