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

Unified Diff: Source/core/paint/FilterEffectBuilder.cpp

Issue 1106973004: Cleanup color space resolution for ReferenceFilterBuilder (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Touchup comment. Created 5 years, 8 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
« no previous file with comments | « Source/core/paint/DeprecatedPaintLayer.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/paint/FilterEffectBuilder.cpp
diff --git a/Source/core/paint/FilterEffectBuilder.cpp b/Source/core/paint/FilterEffectBuilder.cpp
index 8feb35eace475eac4f700ad322c564272715126c..3b0861c419e3c96a1b106bb1b9dbc449a6de6144 100644
--- a/Source/core/paint/FilterEffectBuilder.cpp
+++ b/Source/core/paint/FilterEffectBuilder.cpp
@@ -85,7 +85,7 @@ bool FilterEffectBuilder::build(LayoutObject* renderer, const FilterOperations&
switch (filterOperation->type()) {
case FilterOperation::REFERENCE: {
RefPtrWillBeRawPtr<ReferenceFilter> referenceFilter = ReferenceFilter::create(zoom);
- effect = ReferenceFilterBuilder::build(referenceFilter.get(), renderer, previousEffect.get(), toReferenceFilterOperation(filterOperation));
+ effect = ReferenceFilterBuilder::build(referenceFilter.get(), *renderer, previousEffect.get(), toReferenceFilterOperation(*filterOperation));
referenceFilter->setLastEffect(effect);
m_referenceFilters.append(referenceFilter);
break;
« no previous file with comments | « Source/core/paint/DeprecatedPaintLayer.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698