Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(376)

Unified Diff: third_party/WebKit/Source/platform/graphics/filters/FETile.cpp

Issue 1774943003: blink: Rename platform/ methods to prefix with get when they collide. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: clash-platform: rebase-yayyyyyyyy Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/graphics/filters/FETile.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/filters/FETile.cpp b/third_party/WebKit/Source/platform/graphics/filters/FETile.cpp
index f42ffe95fe678c28391023427663e69e0a3fc82b..89810176ce43df2a25f245389cba647258da9115 100644
--- a/third_party/WebKit/Source/platform/graphics/filters/FETile.cpp
+++ b/third_party/WebKit/Source/platform/graphics/filters/FETile.cpp
@@ -47,7 +47,7 @@ PassRefPtr<SkImageFilter> FETile::createImageFilter(SkiaImageFilterBuilder& buil
{
RefPtr<SkImageFilter> input(builder.build(inputEffect(0), operatingColorSpace()));
FloatRect srcRect = inputEffect(0)->filterPrimitiveSubregion();
- FloatRect dstRect = applyEffectBoundaries(filter()->filterRegion());
+ FloatRect dstRect = applyEffectBoundaries(getFilter()->filterRegion());
return adoptRef(SkTileImageFilter::Create(srcRect, dstRect, input.get()));
}

Powered by Google App Engine
This is Rietveld 408576698