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

Unified Diff: third_party/WebKit/Source/core/svg/SVGAnimatedHref.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/SVGAnimatedHref.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGAnimatedHref.cpp b/third_party/WebKit/Source/core/svg/SVGAnimatedHref.cpp
index 6c5b73fa5abc9b619c1219a5f5d8ea7ddec0c220..5413c83e3a840d904e4e016bb38b50d77befd7ef 100644
--- a/third_party/WebKit/Source/core/svg/SVGAnimatedHref.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGAnimatedHref.cpp
@@ -11,9 +11,9 @@
namespace blink {
-PassRefPtrWillBeRawPtr<SVGAnimatedHref> SVGAnimatedHref::create(SVGElement* contextElement)
+RawPtr<SVGAnimatedHref> SVGAnimatedHref::create(SVGElement* contextElement)
{
- return adoptRefWillBeNoop(new SVGAnimatedHref(contextElement));
+ return new SVGAnimatedHref(contextElement);
}
DEFINE_TRACE(SVGAnimatedHref)
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGAnimatedHref.h ('k') | third_party/WebKit/Source/core/svg/SVGAnimatedInteger.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698