Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / core / css / CSSFunctionValue.h
index 40edc33..aa67863 100644 (file)
@@ -37,12 +37,12 @@ class CSSFunctionValue : public CSSValue {
 public:
     static PassRefPtrWillBeRawPtr<CSSFunctionValue> create(CSSParserFunction* function)
     {
-        return adoptRefWillBeRefCountedGarbageCollected(new CSSFunctionValue(function));
+        return adoptRefWillBeNoop(new CSSFunctionValue(function));
     }
 
     static PassRefPtrWillBeRawPtr<CSSFunctionValue> create(String name, PassRefPtrWillBeRawPtr<CSSValueList> args)
     {
-        return adoptRefWillBeRefCountedGarbageCollected(new CSSFunctionValue(name, args));
+        return adoptRefWillBeNoop(new CSSFunctionValue(name, args));
     }
 
     String customCSSText() const;