| 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();
|
| }
|
|
|