| Index: third_party/WebKit/Source/core/svg/graphics/SVGImage.h
|
| diff --git a/third_party/WebKit/Source/core/svg/graphics/SVGImage.h b/third_party/WebKit/Source/core/svg/graphics/SVGImage.h
|
| index a5d71c8e0901b0f49853ec3f2e8279d28f308c0f..eb4efe0e236d38a2eb1a544bcff600876450ba75 100644
|
| --- a/third_party/WebKit/Source/core/svg/graphics/SVGImage.h
|
| +++ b/third_party/WebKit/Source/core/svg/graphics/SVGImage.h
|
| @@ -116,8 +116,8 @@ private:
|
| void drawInternal(SkCanvas*, const SkPaint&, const FloatRect& fromRect, const FloatRect& toRect, RespectImageOrientationEnum,
|
| ImageClampingMode, const KURL&);
|
|
|
| - OwnPtrWillBePersistent<SVGImageChromeClient> m_chromeClient;
|
| - OwnPtrWillBePersistent<Page> m_page;
|
| + Persistent<SVGImageChromeClient> m_chromeClient;
|
| + Persistent<Page> m_page;
|
|
|
| // When an SVG image has no intrinsic size the size depends on the
|
| // default object size, which in turn depends on the
|
| @@ -147,7 +147,7 @@ public:
|
| }
|
| private:
|
| Image* m_image;
|
| - RawPtrWillBeMember<ImageObserver> m_observer;
|
| + Member<ImageObserver> m_observer;
|
| };
|
|
|
| } // namespace blink
|
|
|