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

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, 10 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 284bb9322ff631adc0ae5ca846a779a588ce89a5..6366670b47be3dc68ce5ce58d6283218fb49bb56 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;
@@ -59,7 +59,7 @@ public:
private:
explicit LayoutImageResourceStyleImage(StyleImage*);
- RefPtrWillBeMember<StyleImage> m_styleImage;
+ Member<StyleImage> m_styleImage;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698