| Index: third_party/WebKit/Source/platform/graphics/Image.h
|
| diff --git a/third_party/WebKit/Source/platform/graphics/Image.h b/third_party/WebKit/Source/platform/graphics/Image.h
|
| index 87f940d7eaca09d19220556440e9842580693c49..dfbfe4ee08731923fe82023230cf74bfcdacf8f3 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/Image.h
|
| +++ b/third_party/WebKit/Source/platform/graphics/Image.h
|
| @@ -195,19 +195,19 @@ class PLATFORM_EXPORT Image : public ThreadSafeRefCounted<Image> {
|
| protected:
|
| Image(ImageObserver* = 0);
|
|
|
| - void drawTiled(GraphicsContext&,
|
| - const FloatRect& dstRect,
|
| - const FloatPoint& srcPoint,
|
| - const FloatSize& tileSize,
|
| - SkBlendMode,
|
| - const FloatSize& repeatSpacing);
|
| - void drawTiled(GraphicsContext&,
|
| - const FloatRect& dstRect,
|
| - const FloatRect& srcRect,
|
| - const FloatSize& tileScaleFactor,
|
| - TileRule hRule,
|
| - TileRule vRule,
|
| - SkBlendMode);
|
| + void drawTiledBackground(GraphicsContext&,
|
| + const FloatRect& dstRect,
|
| + const FloatPoint& srcPoint,
|
| + const FloatSize& tileSize,
|
| + SkBlendMode,
|
| + const FloatSize& repeatSpacing);
|
| + void drawTiledBorder(GraphicsContext&,
|
| + const FloatRect& dstRect,
|
| + const FloatRect& srcRect,
|
| + const FloatSize& tileScaleFactor,
|
| + TileRule hRule,
|
| + TileRule vRule,
|
| + SkBlendMode);
|
|
|
| private:
|
| RefPtr<SharedBuffer> m_encodedImageData;
|
|
|