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

Unified Diff: third_party/WebKit/Source/core/style/StyleInvalidImage.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/style/StyleInvalidImage.h
diff --git a/third_party/WebKit/Source/core/style/StyleInvalidImage.h b/third_party/WebKit/Source/core/style/StyleInvalidImage.h
index 8ead84baac7cf8bcd3e212a7156346fbb2bf19b9..ae71baf3a78ba609a9b08f62c725135879f7705e 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 override { return LayoutSize(); }
bool imageHasRelativeSize() const override { return false; }

Powered by Google App Engine
This is Rietveld 408576698