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

Unified Diff: third_party/WebKit/Source/core/svg/SVGFilterElement.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, 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
Index: third_party/WebKit/Source/core/svg/SVGFilterElement.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGFilterElement.cpp b/third_party/WebKit/Source/core/svg/SVGFilterElement.cpp
index a58eb82fc584fa047dcb44f38d604836a56486b9..3c59eabb35216b511e213257959a886f745cd2cf 100644
--- a/third_party/WebKit/Source/core/svg/SVGFilterElement.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGFilterElement.cpp
@@ -109,7 +109,7 @@ LayoutObject* SVGFilterElement::createLayoutObject(const ComputedStyle&)
{
LayoutSVGResourceFilter* layoutObject = new LayoutSVGResourceFilter(this);
- for (const RefPtrWillBeMember<Node>& node : m_clientsToAdd)
+ for (const Member<Node>& node : m_clientsToAdd)
layoutObject->addClientLayer(node.get());
m_clientsToAdd.clear();

Powered by Google App Engine
This is Rietveld 408576698