Index: third_party/WebKit/Source/core/svg/graphics/filters/SVGFEImage.cpp |
diff --git a/third_party/WebKit/Source/core/svg/graphics/filters/SVGFEImage.cpp b/third_party/WebKit/Source/core/svg/graphics/filters/SVGFEImage.cpp |
index 5641e1944d748107ff1bf86b19ac1a6ff83506e3..4c2642b19554fdc78da61408d4b72291e1ea2689 100644 |
--- a/third_party/WebKit/Source/core/svg/graphics/filters/SVGFEImage.cpp |
+++ b/third_party/WebKit/Source/core/svg/graphics/filters/SVGFEImage.cpp |
@@ -195,10 +195,9 @@ sk_sp<SkImageFilter> FEImage::createImageFilter() { |
// TODO(ccameron): Determine the correct color behavior for this function. |
// https://crbug.com/667431 |
- sk_sp<SkImage> image = m_image |
- ? m_image->imageForCurrentFrame( |
- ColorBehavior::transformToGlobalTarget()) |
- : nullptr; |
+ sk_sp<SkImage> image = m_image ? m_image->imageForCurrentFrame( |
+ ColorBehavior::transformToGlobalTarget()) |
+ : nullptr; |
if (!image) { |
// "A href reference that is an empty image (zero width or zero height), |
// that fails to download, is non-existent, or that cannot be displayed |