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

Unified Diff: third_party/WebKit/Source/core/style/StyleFetchedImage.h

Issue 1852663002: Oilpan: Remove WillBe types (part 9) (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/style/StyleFetchedImage.h
diff --git a/third_party/WebKit/Source/core/style/StyleFetchedImage.h b/third_party/WebKit/Source/core/style/StyleFetchedImage.h
index 5bda65749c77c13d6508e2ef87676ff971ba7929..ddca8a3da71b8b1a8c7535b640a5dd9ea5aef2dd 100644
--- a/third_party/WebKit/Source/core/style/StyleFetchedImage.h
+++ b/third_party/WebKit/Source/core/style/StyleFetchedImage.h
@@ -33,19 +33,18 @@ class Document;
class ImageResource;
class StyleFetchedImage final : public StyleImage, private ResourceClient {
- USING_FAST_MALLOC_WILL_BE_REMOVED(StyleFetchedImage);
- WILL_BE_USING_PRE_FINALIZER(StyleFetchedImage, dispose);
+ USING_PRE_FINALIZER(StyleFetchedImage, dispose);
public:
- static PassRefPtrWillBeRawPtr<StyleFetchedImage> create(ImageResource* image, Document* document, const KURL& url)
+ static RawPtr<StyleFetchedImage> create(ImageResource* image, Document* document, const KURL& url)
{
- return adoptRefWillBeNoop(new StyleFetchedImage(image, document, url));
+ return new StyleFetchedImage(image, document, url);
}
~StyleFetchedImage() override;
WrappedImagePtr data() const override;
- PassRefPtrWillBeRawPtr<CSSValue> cssValue() const override;
- PassRefPtrWillBeRawPtr<CSSValue> computedCSSValue() const override;
+ RawPtr<CSSValue> cssValue() const override;
+ RawPtr<CSSValue> computedCSSValue() const override;
bool canRender() const override;
bool isLoaded() const override;
@@ -68,8 +67,8 @@ private:
void dispose();
- RefPtrWillBeMember<ImageResource> m_image;
- RawPtrWillBeMember<Document> m_document;
+ Member<ImageResource> m_image;
+ Member<Document> m_document;
const KURL m_url;
};
« no previous file with comments | « third_party/WebKit/Source/core/style/ShapeValue.h ('k') | third_party/WebKit/Source/core/style/StyleFetchedImage.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698