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

Unified Diff: Source/core/svg/SVGFEMergeElement.cpp

Issue 170603003: Use nullptr_t for RefPtr, PassRefPtr and RawPtr. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Final rebase Created 6 years, 10 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/svg/SVGFELightElement.cpp ('k') | Source/core/svg/SVGFEMorphologyElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/svg/SVGFEMergeElement.cpp
diff --git a/Source/core/svg/SVGFEMergeElement.cpp b/Source/core/svg/SVGFEMergeElement.cpp
index e5c7d40c522fb1dbb42aca019cb843befeb66e69..3cf645a8edc3971dca126e8a941a1baf82faad88 100644
--- a/Source/core/svg/SVGFEMergeElement.cpp
+++ b/Source/core/svg/SVGFEMergeElement.cpp
@@ -48,13 +48,13 @@ PassRefPtr<FilterEffect> SVGFEMergeElement::build(SVGFilterBuilder* filterBuilde
if (element->hasTagName(SVGNames::feMergeNodeTag)) {
FilterEffect* mergeEffect = filterBuilder->getEffectById(AtomicString(toSVGFEMergeNodeElement(element)->in1()->currentValue()->value()));
if (!mergeEffect)
- return 0;
+ return nullptr;
mergeInputs.append(mergeEffect);
}
}
if (mergeInputs.isEmpty())
- return 0;
+ return nullptr;
return effect.release();
}
« no previous file with comments | « Source/core/svg/SVGFELightElement.cpp ('k') | Source/core/svg/SVGFEMorphologyElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698