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

Unified Diff: third_party/WebKit/Source/core/svg/SVGGeometryElement.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/SVGGeometryElement.h
diff --git a/third_party/WebKit/Source/core/svg/SVGGeometryElement.h b/third_party/WebKit/Source/core/svg/SVGGeometryElement.h
index 664b11b7cd8828e07b3f843fa177573f47b9ef9d..d1c4c6b2034b6d5444ab2e9b7a2515fa25a29f91 100644
--- a/third_party/WebKit/Source/core/svg/SVGGeometryElement.h
+++ b/third_party/WebKit/Source/core/svg/SVGGeometryElement.h
@@ -41,8 +41,8 @@ class SVGGeometryElement : public SVGGraphicsElement {
DEFINE_WRAPPERTYPEINFO();
public:
virtual Path asPath() const = 0;
- bool isPointInFill(PassRefPtrWillBeRawPtr<SVGPointTearOff>) const;
- bool isPointInStroke(PassRefPtrWillBeRawPtr<SVGPointTearOff>) const;
+ bool isPointInFill(RawPtr<SVGPointTearOff>) const;
+ bool isPointInStroke(RawPtr<SVGPointTearOff>) const;
void toClipPath(Path&) const;

Powered by Google App Engine
This is Rietveld 408576698