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

Unified Diff: third_party/WebKit/Source/core/css/CSSImageValue.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/css/CSSImageValue.h
diff --git a/third_party/WebKit/Source/core/css/CSSImageValue.h b/third_party/WebKit/Source/core/css/CSSImageValue.h
index 0aa093a4b496aaeca60a05a41535652e5fc70dc4..d400d259a3ee50310a411c5804d0fadc8312ec75 100644
--- a/third_party/WebKit/Source/core/css/CSSImageValue.h
+++ b/third_party/WebKit/Source/core/css/CSSImageValue.h
@@ -37,21 +37,21 @@ class LayoutObject;
class CORE_EXPORT CSSImageValue : public CSSValue {
public:
- static PassRefPtrWillBeRawPtr<CSSImageValue> create(const KURL& url, StyleFetchedImage* image = 0)
+ static RawPtr<CSSImageValue> create(const KURL& url, StyleFetchedImage* image = 0)
{
return create(url.string(), url, image);
}
- static PassRefPtrWillBeRawPtr<CSSImageValue> create(const String& rawValue, const KURL& url, StyleFetchedImage* image = 0)
+ static RawPtr<CSSImageValue> create(const String& rawValue, const KURL& url, StyleFetchedImage* image = 0)
{
return create(AtomicString(rawValue), url, image);
}
- static PassRefPtrWillBeRawPtr<CSSImageValue> create(const AtomicString& rawValue, const KURL& url, StyleFetchedImage* image = 0)
+ static RawPtr<CSSImageValue> create(const AtomicString& rawValue, const KURL& url, StyleFetchedImage* image = 0)
{
- return adoptRefWillBeNoop(new CSSImageValue(rawValue, url, image));
+ return (new CSSImageValue(rawValue, url, image));
}
- static PassRefPtrWillBeRawPtr<CSSImageValue> create(const AtomicString& absoluteURL)
+ static RawPtr<CSSImageValue> create(const AtomicString& absoluteURL)
{
- return adoptRefWillBeNoop(new CSSImageValue(absoluteURL));
+ return (new CSSImageValue(absoluteURL));
}
~CSSImageValue();
@@ -74,7 +74,7 @@ public:
bool knownToBeOpaque(const LayoutObject*) const;
- PassRefPtrWillBeRawPtr<CSSImageValue> valueWithURLMadeAbsolute()
+ RawPtr<CSSImageValue> valueWithURLMadeAbsolute()
{
return create(KURL(ParsedURLString, m_absoluteURL), m_cachedImage.get());
}
@@ -92,7 +92,7 @@ private:
AtomicString m_absoluteURL;
Referrer m_referrer;
bool m_isCachePending;
- RefPtrWillBeMember<StyleFetchedImage> m_cachedImage;
+ Member<StyleFetchedImage> m_cachedImage;
AtomicString m_initiatorName;
};

Powered by Google App Engine
This is Rietveld 408576698