| Index: third_party/WebKit/Source/core/svg/SVGGraphicsElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGGraphicsElement.cpp b/third_party/WebKit/Source/core/svg/SVGGraphicsElement.cpp
|
| index 2e62f58267c8ee19fdfe308b842866dd5049d36e..6e284f6df4ba62b8679f117311e685690007ef4e 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGGraphicsElement.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGGraphicsElement.cpp
|
| @@ -100,12 +100,12 @@ AffineTransform SVGGraphicsElement::getScreenCTM(StyleUpdateStrategy styleUpdate
|
| return computeCTM(ScreenScope, styleUpdateStrategy);
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<SVGMatrixTearOff> SVGGraphicsElement::getCTMFromJavascript()
|
| +RawPtr<SVGMatrixTearOff> SVGGraphicsElement::getCTMFromJavascript()
|
| {
|
| return SVGMatrixTearOff::create(getCTM());
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<SVGMatrixTearOff> SVGGraphicsElement::getScreenCTMFromJavascript()
|
| +RawPtr<SVGMatrixTearOff> SVGGraphicsElement::getScreenCTMFromJavascript()
|
| {
|
| return SVGMatrixTearOff::create(getScreenCTM());
|
| }
|
| @@ -222,7 +222,7 @@ FloatRect SVGGraphicsElement::getBBox()
|
| return layoutObject()->objectBoundingBox();
|
| }
|
|
|
| -PassRefPtrWillBeRawPtr<SVGRectTearOff> SVGGraphicsElement::getBBoxFromJavascript()
|
| +RawPtr<SVGRectTearOff> SVGGraphicsElement::getBBoxFromJavascript()
|
| {
|
| return SVGRectTearOff::create(SVGRect::create(getBBox()), 0, PropertyIsNotAnimVal);
|
| }
|
|
|