| 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 513421b3a57274343502db72445dc63054c240c8..69ee68d68c33296d5fc49f4f90c619f05feeb43f 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSImageValue.h
|
| +++ b/third_party/WebKit/Source/core/css/CSSImageValue.h
|
| @@ -37,19 +37,19 @@ class LayoutObject;
|
|
|
| class CORE_EXPORT CSSImageValue : public CSSValue {
|
| public:
|
| - static RawPtr<CSSImageValue> create(const KURL& url, StyleFetchedImage* image = 0)
|
| + static CSSImageValue* create(const KURL& url, StyleFetchedImage* image = 0)
|
| {
|
| return create(url.getString(), url, image);
|
| }
|
| - static RawPtr<CSSImageValue> create(const String& rawValue, const KURL& url, StyleFetchedImage* image = 0)
|
| + static CSSImageValue* create(const String& rawValue, const KURL& url, StyleFetchedImage* image = 0)
|
| {
|
| return create(AtomicString(rawValue), url, image);
|
| }
|
| - static RawPtr<CSSImageValue> create(const AtomicString& rawValue, const KURL& url, StyleFetchedImage* image = 0)
|
| + static CSSImageValue* create(const AtomicString& rawValue, const KURL& url, StyleFetchedImage* image = 0)
|
| {
|
| return new CSSImageValue(rawValue, url, image);
|
| }
|
| - static RawPtr<CSSImageValue> create(const AtomicString& absoluteURL)
|
| + static CSSImageValue* create(const AtomicString& absoluteURL)
|
| {
|
| return new CSSImageValue(absoluteURL);
|
| }
|
| @@ -74,7 +74,7 @@ public:
|
|
|
| bool knownToBeOpaque(const LayoutObject&) const;
|
|
|
| - RawPtr<CSSImageValue> valueWithURLMadeAbsolute()
|
| + CSSImageValue* valueWithURLMadeAbsolute()
|
| {
|
| return create(KURL(ParsedURLString, m_absoluteURL), m_cachedImage.get());
|
| }
|
|
|