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

Unified Diff: third_party/WebKit/Source/core/layout/svg/SVGLayoutTreeAsText.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/core/layout/svg/SVGLayoutTreeAsText.cpp
diff --git a/third_party/WebKit/Source/core/layout/svg/SVGLayoutTreeAsText.cpp b/third_party/WebKit/Source/core/layout/svg/SVGLayoutTreeAsText.cpp
index 40c0516610da1f4b4466b06676256e7393350d29..638ad91a39f25219d2fc1adada4961900f83451c 100644
--- a/third_party/WebKit/Source/core/layout/svg/SVGLayoutTreeAsText.cpp
+++ b/third_party/WebKit/Source/core/layout/svg/SVGLayoutTreeAsText.cpp
@@ -507,7 +507,7 @@ void writeSVGResourceContainer(TextStream& ts, const LayoutObject& object, int i
// Creating a placeholder filter which is passed to the builder.
FloatRect dummyRect;
RefPtrWillBeRawPtr<Filter> dummyFilter = Filter::create(dummyRect, dummyRect, 1, Filter::BoundingBox);
- SVGFilterBuilder builder(dummyFilter->sourceGraphic());
+ SVGFilterBuilder builder(dummyFilter->getSourceGraphic());
builder.buildGraph(dummyFilter.get(), toSVGFilterElement(*filter->element()), dummyRect);
if (FilterEffect* lastEffect = builder.lastEffect())
lastEffect->externalRepresentation(ts, indent + 1);

Powered by Google App Engine
This is Rietveld 408576698