| Index: third_party/WebKit/Source/platform/graphics/skia/SkiaUtils.h
|
| diff --git a/third_party/WebKit/Source/platform/graphics/skia/SkiaUtils.h b/third_party/WebKit/Source/platform/graphics/skia/SkiaUtils.h
|
| index e4282bba4dbd6a9a87b3b495790cc404410bc392..c7b9adc0762fdb5a067ad34e7e7be174917a0b6d 100644
|
| --- a/third_party/WebKit/Source/platform/graphics/skia/SkiaUtils.h
|
| +++ b/third_party/WebKit/Source/platform/graphics/skia/SkiaUtils.h
|
| @@ -125,9 +125,7 @@ void drawPlatformFocusRing(const PrimitiveType&, SkCanvas*, SkColor, int width);
|
| // TODO(fmalita): remove in favor of direct SrcRectConstraint use.
|
| inline SkCanvas::SrcRectConstraint WebCoreClampingModeToSkiaRectConstraint(Image::ImageClampingMode clampMode)
|
| {
|
| - return clampMode == Image::ClampImageToSourceRect
|
| - ? SkCanvas::kStrict_SrcRectConstraint
|
| - : SkCanvas::kFast_SrcRectConstraint;
|
| + return SkCanvas::kFast_SrcRectConstraint;
|
| }
|
|
|
| // Skia's smart pointer APIs are preferable over their legacy raw pointer counterparts.
|
|
|