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

Unified Diff: third_party/WebKit/Source/core/svg/graphics/SVGImage.h

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/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

Powered by Google App Engine
This is Rietveld 408576698