| Index: ui/gfx/canvas.h
|
| diff --git a/ui/gfx/canvas.h b/ui/gfx/canvas.h
|
| index 1c175c9b8c46eee44929121696237ee4505e6818..9e85da158a6a6165e3f60a8c18dec3ce8624235a 100644
|
| --- a/ui/gfx/canvas.h
|
| +++ b/ui/gfx/canvas.h
|
| @@ -447,12 +447,21 @@ class GFX_EXPORT Canvas {
|
| void TileImageInt(const ImageSkia& image,
|
| int src_x,
|
| int src_y,
|
| + int dest_x,
|
| + int dest_y,
|
| + int w,
|
| + int h,
|
| + cc::PaintFlags* flags);
|
| + void TileImageInt(const ImageSkia& image,
|
| + int src_x,
|
| + int src_y,
|
| float tile_scale_x,
|
| float tile_scale_y,
|
| int dest_x,
|
| int dest_y,
|
| int w,
|
| - int h);
|
| + int h,
|
| + cc::PaintFlags* flags);
|
|
|
| // Helper for TileImageInt(). Initializes |flags| for tiling |image| with the
|
| // given parameters. Returns false if the provided image does not have a
|
|
|