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

Unified Diff: third_party/WebKit/Source/core/svg/SVGFESpecularLightingElement.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/SVGFESpecularLightingElement.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGFESpecularLightingElement.cpp b/third_party/WebKit/Source/core/svg/SVGFESpecularLightingElement.cpp
index e468a18921101a8708961d5eac8b53e85572057f..ec03733f66ccb0b3ae7040c7f6a37d8ad52cede9 100644
--- a/third_party/WebKit/Source/core/svg/SVGFESpecularLightingElement.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGFESpecularLightingElement.cpp
@@ -124,7 +124,7 @@ void SVGFESpecularLightingElement::lightElementAttributeChanged(const SVGFELight
primitiveAttributeChanged(attrName);
}
-PassRefPtrWillBeRawPtr<FilterEffect> SVGFESpecularLightingElement::build(SVGFilterBuilder* filterBuilder, Filter* filter)
+RawPtr<FilterEffect> SVGFESpecularLightingElement::build(SVGFilterBuilder* filterBuilder, Filter* filter)
{
FilterEffect* input1 = filterBuilder->getEffectById(AtomicString(m_in1->currentValue()->value()));
ASSERT(input1);
@@ -139,7 +139,7 @@ PassRefPtrWillBeRawPtr<FilterEffect> SVGFESpecularLightingElement::build(SVGFilt
const SVGFELightElement* lightNode = SVGFELightElement::findLightElement(*this);
RefPtr<LightSource> lightSource = lightNode ? lightNode->lightSource(filter) : nullptr;
- RefPtrWillBeRawPtr<FilterEffect> effect = FESpecularLighting::create(filter,
+ RawPtr<FilterEffect> effect = FESpecularLighting::create(filter,
color,
m_surfaceScale->currentValue()->value(),
m_specularConstant->currentValue()->value(),

Powered by Google App Engine
This is Rietveld 408576698