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

Unified Diff: third_party/WebKit/Source/core/svg/SVGFEDiffuseLightingElement.cpp

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/svg/SVGFEDiffuseLightingElement.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGFEDiffuseLightingElement.cpp b/third_party/WebKit/Source/core/svg/SVGFEDiffuseLightingElement.cpp
index a904821ef2e6a1ecdc4e500bd5ec3a12512cfa4c..03d4a7b2b341c9aaf5a572622b99da708dba3ad6 100644
--- a/third_party/WebKit/Source/core/svg/SVGFEDiffuseLightingElement.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGFEDiffuseLightingElement.cpp
@@ -118,7 +118,7 @@ void SVGFEDiffuseLightingElement::lightElementAttributeChanged(const SVGFELightE
primitiveAttributeChanged(attrName);
}
-PassRefPtrWillBeRawPtr<FilterEffect> SVGFEDiffuseLightingElement::build(SVGFilterBuilder* filterBuilder, Filter* filter)
+RawPtr<FilterEffect> SVGFEDiffuseLightingElement::build(SVGFilterBuilder* filterBuilder, Filter* filter)
{
FilterEffect* input1 = filterBuilder->getEffectById(AtomicString(m_in1->currentValue()->value()));
ASSERT(input1);
@@ -133,7 +133,7 @@ PassRefPtrWillBeRawPtr<FilterEffect> SVGFEDiffuseLightingElement::build(SVGFilte
const SVGFELightElement* lightNode = SVGFELightElement::findLightElement(*this);
RefPtr<LightSource> lightSource = lightNode ? lightNode->lightSource(filter) : nullptr;
- RefPtrWillBeRawPtr<FilterEffect> effect = FEDiffuseLighting::create(filter,
+ RawPtr<FilterEffect> effect = FEDiffuseLighting::create(filter,
color,
m_surfaceScale->currentValue()->value(),
m_diffuseConstant->currentValue()->value(),

Powered by Google App Engine
This is Rietveld 408576698