| Index: third_party/WebKit/Source/core/css/CSSCustomIdentValue.h
|
| diff --git a/third_party/WebKit/Source/core/css/CSSCustomIdentValue.h b/third_party/WebKit/Source/core/css/CSSCustomIdentValue.h
|
| index df4cce19cd991a817b1d9a6fbf61bbc31c4e83c4..835eb70c7562365cf0983f222475b18e0ede1e5f 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSCustomIdentValue.h
|
| +++ b/third_party/WebKit/Source/core/css/CSSCustomIdentValue.h
|
| @@ -14,15 +14,15 @@ namespace blink {
|
|
|
| class CSSCustomIdentValue : public CSSValue {
|
| public:
|
| - static PassRefPtrWillBeRawPtr<CSSCustomIdentValue> create(const String& str)
|
| + static RawPtr<CSSCustomIdentValue> create(const String& str)
|
| {
|
| - return adoptRefWillBeNoop(new CSSCustomIdentValue(str));
|
| + return new CSSCustomIdentValue(str);
|
| }
|
|
|
| // TODO(sashab, timloh): Remove this and lazily parse the CSSPropertyID in isKnownPropertyID().
|
| - static PassRefPtrWillBeRawPtr<CSSCustomIdentValue> create(CSSPropertyID id)
|
| + static RawPtr<CSSCustomIdentValue> create(CSSPropertyID id)
|
| {
|
| - return adoptRefWillBeNoop(new CSSCustomIdentValue(id));
|
| + return new CSSCustomIdentValue(id);
|
| }
|
|
|
| String value() const { ASSERT(!isKnownPropertyID()); return m_string; }
|
|
|