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

Unified Diff: third_party/WebKit/Source/core/style/StyleInvalidImage.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
« no previous file with comments | « third_party/WebKit/Source/core/style/StyleImage.h ('k') | third_party/WebKit/Source/core/style/StylePath.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/style/StyleInvalidImage.h
diff --git a/third_party/WebKit/Source/core/style/StyleInvalidImage.h b/third_party/WebKit/Source/core/style/StyleInvalidImage.h
index 00408856ae80ffcbd37f8bbd58c43f2df7b8dcc9..c2854cf20771bbefe755bc00f3827d386bfc8f1b 100644
--- a/third_party/WebKit/Source/core/style/StyleInvalidImage.h
+++ b/third_party/WebKit/Source/core/style/StyleInvalidImage.h
@@ -12,16 +12,16 @@ namespace blink {
class StyleInvalidImage final : public StyleImage {
public:
- static PassRefPtrWillBeRawPtr<StyleInvalidImage> create(const String& url)
+ static RawPtr<StyleInvalidImage> create(const String& url)
{
- return adoptRefWillBeNoop(new StyleInvalidImage(url));
+ return new StyleInvalidImage(url);
}
WrappedImagePtr data() const override { return m_url.impl(); }
- PassRefPtrWillBeRawPtr<CSSValue> cssValue() const override { return CSSImageValue::create(AtomicString(m_url)); }
+ RawPtr<CSSValue> cssValue() const override { return CSSImageValue::create(AtomicString(m_url)); }
- PassRefPtrWillBeRawPtr<CSSValue> computedCSSValue() const override { return cssValue(); }
+ RawPtr<CSSValue> computedCSSValue() const override { return cssValue(); }
LayoutSize imageSize(const LayoutObject&, float /*multiplier*/, const LayoutSize& /*defaultObjectSize*/) const override { return LayoutSize(); }
bool imageHasRelativeSize() const override { return false; }
« no previous file with comments | « third_party/WebKit/Source/core/style/StyleImage.h ('k') | third_party/WebKit/Source/core/style/StylePath.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698