| Index: Source/core/css/CSSFunctionValue.h
|
| diff --git a/Source/core/css/CSSFunctionValue.h b/Source/core/css/CSSFunctionValue.h
|
| index b094a5eca67514abe6716af349aa790f2ed1bef5..40edc338ebdc700caf494aae0a651421a0f99226 100644
|
| --- a/Source/core/css/CSSFunctionValue.h
|
| +++ b/Source/core/css/CSSFunctionValue.h
|
| @@ -37,12 +37,12 @@ class CSSFunctionValue : public CSSValue {
|
| public:
|
| static PassRefPtrWillBeRawPtr<CSSFunctionValue> create(CSSParserFunction* function)
|
| {
|
| - return adoptRefCountedWillBeRefCountedGarbageCollected(new CSSFunctionValue(function));
|
| + return adoptRefWillBeRefCountedGarbageCollected(new CSSFunctionValue(function));
|
| }
|
|
|
| static PassRefPtrWillBeRawPtr<CSSFunctionValue> create(String name, PassRefPtrWillBeRawPtr<CSSValueList> args)
|
| {
|
| - return adoptRefCountedWillBeRefCountedGarbageCollected(new CSSFunctionValue(name, args));
|
| + return adoptRefWillBeRefCountedGarbageCollected(new CSSFunctionValue(name, args));
|
| }
|
|
|
| String customCSSText() const;
|
|
|