| Index: Source/core/svg/SVGZoomEvent.h
|
| diff --git a/Source/core/svg/SVGZoomEvent.h b/Source/core/svg/SVGZoomEvent.h
|
| index f5e588bd24d739546a265194f800426ad3b6f1e0..38d557dbe772843ee5fa133ce25659c02b5fc9e2 100644
|
| --- a/Source/core/svg/SVGZoomEvent.h
|
| +++ b/Source/core/svg/SVGZoomEvent.h
|
| @@ -25,6 +25,7 @@
|
| #include "core/events/UIEvent.h"
|
| #include "core/svg/SVGPoint.h"
|
| #include "core/svg/SVGRect.h"
|
| +#include "platform/heap/Handle.h"
|
|
|
| namespace blink {
|
|
|
| @@ -37,15 +38,15 @@ public:
|
| }
|
|
|
| // 'SVGZoomEvent' functions
|
| - PassRefPtr<SVGRectTearOff> zoomRectScreen() const;
|
| + PassRefPtrWillBeRawPtr<SVGRectTearOff> zoomRectScreen() const;
|
|
|
| float previousScale() const;
|
|
|
| - PassRefPtr<SVGPointTearOff> previousTranslate() const;
|
| + PassRefPtrWillBeRawPtr<SVGPointTearOff> previousTranslate() const;
|
|
|
| float newScale() const;
|
|
|
| - PassRefPtr<SVGPointTearOff> newTranslate() const;
|
| + PassRefPtrWillBeRawPtr<SVGPointTearOff> newTranslate() const;
|
|
|
| virtual const AtomicString& interfaceName() const override;
|
|
|
|
|