| Index: Source/core/css/CSSCalculationValue.h
|
| diff --git a/Source/core/css/CSSCalculationValue.h b/Source/core/css/CSSCalculationValue.h
|
| index d79754fa29c1999f12111c0e4a917e21ad1a8a4c..24bf97908a4d9300ad5b9bd90c8ae72f123d07fe 100644
|
| --- a/Source/core/css/CSSCalculationValue.h
|
| +++ b/Source/core/css/CSSCalculationValue.h
|
| @@ -34,6 +34,7 @@
|
| #include "core/CoreExport.h"
|
| #include "core/css/CSSPrimitiveValue.h"
|
| #include "core/css/CSSValue.h"
|
| +#include "core/css/parser/CSSParserTokenRange.h"
|
| #include "core/css/parser/CSSParserValues.h"
|
| #include "platform/CalculationValue.h"
|
| #include "wtf/PassOwnPtr.h"
|
| @@ -42,7 +43,6 @@
|
|
|
| namespace blink {
|
|
|
| -class CSSParserValueList;
|
| class CalculationValue;
|
|
|
| enum CalcOperator {
|
| @@ -103,7 +103,7 @@ protected:
|
|
|
| class CORE_EXPORT CSSCalcValue : public CSSValue {
|
| public:
|
| - static PassRefPtrWillBeRawPtr<CSSCalcValue> create(CSSParserValueList*, ValueRange);
|
| + static PassRefPtrWillBeRawPtr<CSSCalcValue> create(const CSSParserTokenRange&, ValueRange);
|
| static PassRefPtrWillBeRawPtr<CSSCalcValue> create(PassRefPtrWillBeRawPtr<CSSCalcExpressionNode>, ValueRange = ValueRangeAll);
|
|
|
| static PassRefPtrWillBeRawPtr<CSSCalcExpressionNode> createExpressionNode(PassRefPtrWillBeRawPtr<CSSPrimitiveValue>, bool isInteger = false);
|
|
|