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

Unified Diff: third_party/WebKit/Source/core/svg/SVGAnimatedHref.h

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.h
diff --git a/third_party/WebKit/Source/core/svg/SVGAnimatedHref.h b/third_party/WebKit/Source/core/svg/SVGAnimatedHref.h
index 9ed58ede38bda12e1b97f4d7022adba62a1419fe..f6dcd76752eb93b214551de67612c452845475ba 100644
--- a/third_party/WebKit/Source/core/svg/SVGAnimatedHref.h
+++ b/third_party/WebKit/Source/core/svg/SVGAnimatedHref.h
@@ -19,7 +19,7 @@ namespace blink {
// or the wrapped object and forwards the operation to it.)
class SVGAnimatedHref final : public SVGAnimatedString {
public:
- static PassRefPtrWillBeRawPtr<SVGAnimatedHref> create(SVGElement* contextElement);
+ static RawPtr<SVGAnimatedHref> create(SVGElement* contextElement);
SVGString* currentValue();
const SVGString* currentValue() const;
@@ -42,7 +42,7 @@ private:
const SVGAnimatedString* backingString() const;
bool useXLink() const;
- RefPtrWillBeMember<SVGAnimatedString> m_xlinkHref;
+ Member<SVGAnimatedString> m_xlinkHref;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698