Index: Source/core/css/CSSFunctionValue.h |
diff --git a/Source/core/css/CSSFunctionValue.h b/Source/core/css/CSSFunctionValue.h |
index fa9066f05853ce937f99ecb612291dae11a1e91b..8bf1cdae1a23a92f92eeafee2ab4af2aaa9bdee7 100644 |
--- a/Source/core/css/CSSFunctionValue.h |
+++ b/Source/core/css/CSSFunctionValue.h |
@@ -31,15 +31,9 @@ |
namespace blink { |
class CSSValueList; |
-struct CSSParserFunction; |
class CSSFunctionValue : public CSSValue { |
public: |
- static PassRefPtrWillBeRawPtr<CSSFunctionValue> create(CSSParserFunction* function) |
- { |
- return adoptRefWillBeNoop(new CSSFunctionValue(function)); |
- } |
- |
static PassRefPtrWillBeRawPtr<CSSFunctionValue> create(String name, PassRefPtrWillBeRawPtr<CSSValueList> args) |
{ |
return adoptRefWillBeNoop(new CSSFunctionValue(name, args)); |
@@ -54,7 +48,6 @@ public: |
void traceAfterDispatch(Visitor*); |
private: |
- explicit CSSFunctionValue(CSSParserFunction*); |
CSSFunctionValue(String, PassRefPtrWillBeRawPtr<CSSValueList>); |
String m_name; |