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

Unified Diff: third_party/WebKit/Source/core/paint/SVGFilterPainter.cpp

Issue 2290903002: Change (Pass)RefPtr<SkXxx> into sk_sp<SkXxx>. (Closed)
Patch Set: Rebasing... Created 4 years, 3 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/paint/SVGFilterPainter.cpp
diff --git a/third_party/WebKit/Source/core/paint/SVGFilterPainter.cpp b/third_party/WebKit/Source/core/paint/SVGFilterPainter.cpp
index 98792bec46a411cb730ab16f1969f752c661eb26..fbaae58c59111fdf85a3d8403848de748678b4fe 100644
--- a/third_party/WebKit/Source/core/paint/SVGFilterPainter.cpp
+++ b/third_party/WebKit/Source/core/paint/SVGFilterPainter.cpp
@@ -39,7 +39,7 @@ void SVGFilterRecordingContext::endContent(FilterData* filterData)
m_paintController->commitNewDisplayItems();
m_paintController->paintArtifact().replay(*m_context);
- SkiaImageFilterBuilder::buildSourceGraphic(sourceGraphic, toSkSp(m_context->endRecording()));
+ SkiaImageFilterBuilder::buildSourceGraphic(sourceGraphic, m_context->endRecording());
// Content is cached by the source graphic so temporaries can be freed.
m_paintController = nullptr;

Powered by Google App Engine
This is Rietveld 408576698