| Index: third_party/WebKit/Source/platform/graphics/ImagePattern.cpp
|
| diff --git a/third_party/WebKit/Source/platform/graphics/ImagePattern.cpp b/third_party/WebKit/Source/platform/graphics/ImagePattern.cpp
|
| index e92ac0aff6305a5ed266243f6485575d3985485f..c0afbbe0f9658ebc79c5e2c4e5201a2607d91e0a 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/ImagePattern.cpp
|
| +++ b/third_party/WebKit/Source/platform/graphics/ImagePattern.cpp
|
| @@ -22,7 +22,8 @@ ImagePattern::ImagePattern(PassRefPtr<Image> image, RepeatMode repeatMode)
|
| : Pattern(repeatMode), m_tileImage(image->imageForCurrentFrame()) {
|
| m_previousLocalMatrix.setIdentity();
|
| if (m_tileImage) {
|
| - // TODO(fmalita): mechanism to extract the actual SkImageInfo from an SkImage?
|
| + // TODO(fmalita): mechanism to extract the actual SkImageInfo from an
|
| + // SkImage?
|
| const SkImageInfo info = SkImageInfo::MakeN32Premul(
|
| m_tileImage->width() + (isRepeatX() ? 0 : 2),
|
| m_tileImage->height() + (isRepeatY() ? 0 : 2));
|
|
|