| Index: third_party/WebKit/Source/core/css/CSSCalculationValue.h
|
| diff --git a/third_party/WebKit/Source/core/css/CSSCalculationValue.h b/third_party/WebKit/Source/core/css/CSSCalculationValue.h
|
| index c4957c38f3afc4941d6203a05a20e772ab83e130..d75694cdee25c3f5c101276a9141148cbb9830e3 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSCalculationValue.h
|
| +++ b/third_party/WebKit/Source/core/css/CSSCalculationValue.h
|
| @@ -78,6 +78,9 @@ public:
|
| virtual String customCSSText() const = 0;
|
| virtual bool equals(const CSSCalcExpressionNode& other) const { return m_category == other.m_category && m_isInteger == other.m_isInteger; }
|
| virtual Type getType() const = 0;
|
| + virtual const CSSCalcExpressionNode* getLHS() const = 0;
|
| + virtual const CSSCalcExpressionNode* getRHS() const = 0;
|
| + virtual CalcOperator op() const = 0;
|
|
|
| CalculationCategory category() const { return m_category; }
|
| virtual CSSPrimitiveValue::UnitType typeWithCalcResolved() const = 0;
|
|
|