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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutImageResourceStyleImage.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/layout/LayoutImageResourceStyleImage.h
diff --git a/third_party/WebKit/Source/core/layout/LayoutImageResourceStyleImage.h b/third_party/WebKit/Source/core/layout/LayoutImageResourceStyleImage.h
index 0cc405144f9568b86faa63196928234647668e13..986fec2e289870c001949a74016a9d4559e8af41 100644
--- a/third_party/WebKit/Source/core/layout/LayoutImageResourceStyleImage.h
+++ b/third_party/WebKit/Source/core/layout/LayoutImageResourceStyleImage.h
@@ -38,9 +38,9 @@ class LayoutImageResourceStyleImage final : public LayoutImageResource {
public:
~LayoutImageResourceStyleImage() override;
- static PassOwnPtrWillBeRawPtr<LayoutImageResource> create(StyleImage* styleImage)
+ static RawPtr<LayoutImageResource> create(StyleImage* styleImage)
{
- return adoptPtrWillBeNoop(new LayoutImageResourceStyleImage(styleImage));
+ return new LayoutImageResourceStyleImage(styleImage);
}
void initialize(LayoutObject*) override;
void shutdown() override;
@@ -63,7 +63,7 @@ public:
private:
explicit LayoutImageResourceStyleImage(StyleImage*);
- RefPtrWillBeMember<StyleImage> m_styleImage;
+ Member<StyleImage> m_styleImage;
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutImageResource.h ('k') | third_party/WebKit/Source/core/layout/LayoutListMarker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698