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

Unified Diff: third_party/WebKit/Source/core/svg/SVGTransformDistance.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/SVGTransformDistance.h
diff --git a/third_party/WebKit/Source/core/svg/SVGTransformDistance.h b/third_party/WebKit/Source/core/svg/SVGTransformDistance.h
index 32e8a065742a3e43b629b36320e019c848155190..4ceccfc2ea077077db3c3ae858d3e301085eb618 100644
--- a/third_party/WebKit/Source/core/svg/SVGTransformDistance.h
+++ b/third_party/WebKit/Source/core/svg/SVGTransformDistance.h
@@ -31,12 +31,12 @@ class SVGTransformDistance {
STACK_ALLOCATED();
public:
SVGTransformDistance();
- SVGTransformDistance(PassRefPtrWillBeRawPtr<SVGTransform> fromTransform, PassRefPtrWillBeRawPtr<SVGTransform> toTransform);
+ SVGTransformDistance(RawPtr<SVGTransform> fromTransform, RawPtr<SVGTransform> toTransform);
SVGTransformDistance scaledDistance(float scaleFactor) const;
- PassRefPtrWillBeRawPtr<SVGTransform> addToSVGTransform(PassRefPtrWillBeRawPtr<SVGTransform>) const;
+ RawPtr<SVGTransform> addToSVGTransform(RawPtr<SVGTransform>) const;
- static PassRefPtrWillBeRawPtr<SVGTransform> addSVGTransforms(PassRefPtrWillBeRawPtr<SVGTransform>, PassRefPtrWillBeRawPtr<SVGTransform>, unsigned repeatCount = 1);
+ static RawPtr<SVGTransform> addSVGTransforms(RawPtr<SVGTransform>, RawPtr<SVGTransform>, unsigned repeatCount = 1);
float distance() const;
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGTransform.idl ('k') | third_party/WebKit/Source/core/svg/SVGTransformDistance.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698