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

Unified Diff: third_party/WebKit/Source/core/svg/SVGTransformList.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/SVGTransformList.h
diff --git a/third_party/WebKit/Source/core/svg/SVGTransformList.h b/third_party/WebKit/Source/core/svg/SVGTransformList.h
index 144db38eb1adf6c78378e8cf1f2cb3940051ec08..a8af43b9fae17739ee0433f2e94381691115883e 100644
--- a/third_party/WebKit/Source/core/svg/SVGTransformList.h
+++ b/third_party/WebKit/Source/core/svg/SVGTransformList.h
@@ -43,29 +43,29 @@ class SVGTransformList final : public SVGListPropertyHelper<SVGTransformList, SV
public:
typedef SVGTransformListTearOff TearOffType;
- static PassRefPtrWillBeRawPtr<SVGTransformList> create()
+ static RawPtr<SVGTransformList> create()
{
- return adoptRefWillBeNoop(new SVGTransformList());
+ return new SVGTransformList();
}
- static PassRefPtrWillBeRawPtr<SVGTransformList> create(SVGTransformType, const String&);
+ static RawPtr<SVGTransformList> create(SVGTransformType, const String&);
~SVGTransformList() override;
- PassRefPtrWillBeRawPtr<SVGTransform> consolidate();
+ RawPtr<SVGTransform> consolidate();
bool concatenate(AffineTransform& result) const;
// SVGPropertyBase:
- PassRefPtrWillBeRawPtr<SVGPropertyBase> cloneForAnimation(const String&) const override;
+ RawPtr<SVGPropertyBase> cloneForAnimation(const String&) const override;
String valueAsString() const override;
SVGParsingError setValueAsString(const String&);
bool parse(const UChar*& ptr, const UChar* end);
bool parse(const LChar*& ptr, const LChar* end);
- void add(PassRefPtrWillBeRawPtr<SVGPropertyBase>, SVGElement*) override;
- void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, PassRefPtrWillBeRawPtr<SVGPropertyBase> fromValue, PassRefPtrWillBeRawPtr<SVGPropertyBase> toValue, PassRefPtrWillBeRawPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) override;
- float calculateDistance(PassRefPtrWillBeRawPtr<SVGPropertyBase> to, SVGElement*) override;
+ void add(RawPtr<SVGPropertyBase>, SVGElement*) override;
+ void calculateAnimatedValue(SVGAnimationElement*, float percentage, unsigned repeatCount, RawPtr<SVGPropertyBase> fromValue, RawPtr<SVGPropertyBase> toValue, RawPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*) override;
+ float calculateDistance(RawPtr<SVGPropertyBase> to, SVGElement*) override;
static AnimatedPropertyType classType() { return AnimatedTransformList; }
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGTransformDistance.cpp ('k') | third_party/WebKit/Source/core/svg/SVGTransformList.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698