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

Unified Diff: third_party/WebKit/Source/core/svg/SVGZoomEvent.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/SVGZoomEvent.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGZoomEvent.cpp b/third_party/WebKit/Source/core/svg/SVGZoomEvent.cpp
index 4ad663b62f4f79c3236a5093235cea27b222af7e..f89bee9335d63e12bffe56cd3fb8ef29ccb42300 100644
--- a/third_party/WebKit/Source/core/svg/SVGZoomEvent.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGZoomEvent.cpp
@@ -33,9 +33,9 @@ SVGZoomEvent::SVGZoomEvent()
{
}
-PassRefPtrWillBeRawPtr<SVGRectTearOff> SVGZoomEvent::zoomRectScreen() const
+RawPtr<SVGRectTearOff> SVGZoomEvent::zoomRectScreen() const
{
- RefPtrWillBeRawPtr<SVGRectTearOff> rectTearOff = SVGRectTearOff::create(SVGRect::create(), 0, PropertyIsNotAnimVal);
+ RawPtr<SVGRectTearOff> rectTearOff = SVGRectTearOff::create(SVGRect::create(), 0, PropertyIsNotAnimVal);
rectTearOff->setIsReadOnlyProperty();
return rectTearOff.release();
}
@@ -45,9 +45,9 @@ float SVGZoomEvent::previousScale() const
return m_previousScale;
}
-PassRefPtrWillBeRawPtr<SVGPointTearOff> SVGZoomEvent::previousTranslate() const
+RawPtr<SVGPointTearOff> SVGZoomEvent::previousTranslate() const
{
- RefPtrWillBeRawPtr<SVGPointTearOff> pointTearOff = SVGPointTearOff::create(SVGPoint::create(m_previousTranslate), 0, PropertyIsNotAnimVal);
+ RawPtr<SVGPointTearOff> pointTearOff = SVGPointTearOff::create(SVGPoint::create(m_previousTranslate), 0, PropertyIsNotAnimVal);
pointTearOff->setIsReadOnlyProperty();
return pointTearOff.release();
}
@@ -57,9 +57,9 @@ float SVGZoomEvent::newScale() const
return m_newScale;
}
-PassRefPtrWillBeRawPtr<SVGPointTearOff> SVGZoomEvent::newTranslate() const
+RawPtr<SVGPointTearOff> SVGZoomEvent::newTranslate() const
{
- RefPtrWillBeRawPtr<SVGPointTearOff> pointTearOff = SVGPointTearOff::create(SVGPoint::create(m_newTranslate), 0, PropertyIsNotAnimVal);
+ RawPtr<SVGPointTearOff> pointTearOff = SVGPointTearOff::create(SVGPoint::create(m_newTranslate), 0, PropertyIsNotAnimVal);
pointTearOff->setIsReadOnlyProperty();
return pointTearOff.release();
}

Powered by Google App Engine
This is Rietveld 408576698