| Index: Source/core/css/CSSPrimitiveValue.h
|
| diff --git a/Source/core/css/CSSPrimitiveValue.h b/Source/core/css/CSSPrimitiveValue.h
|
| index c4f2e3657ee417a78fafc516bee62d8634a4b9a0..086532e5b5ab1f244d375e4a31ad0f6806d69f16 100644
|
| --- a/Source/core/css/CSSPrimitiveValue.h
|
| +++ b/Source/core/css/CSSPrimitiveValue.h
|
| @@ -267,15 +267,15 @@ public:
|
| double getDoubleValue() const;
|
|
|
| void setFloatValue(unsigned short unitType, double floatValue, ExceptionState&);
|
| - float getFloatValue(unsigned short unitType, ExceptionState& es) const { return getValue<float>(unitType, es); }
|
| + float getFloatValue(unsigned short unitType, ExceptionState& exceptionState) const { return getValue<float>(unitType, exceptionState); }
|
| float getFloatValue(unsigned short unitType) const { return getValue<float>(unitType); }
|
| float getFloatValue() const { return getValue<float>(); }
|
|
|
| - int getIntValue(unsigned short unitType, ExceptionState& es) const { return getValue<int>(unitType, es); }
|
| + int getIntValue(unsigned short unitType, ExceptionState& exceptionState) const { return getValue<int>(unitType, exceptionState); }
|
| int getIntValue(unsigned short unitType) const { return getValue<int>(unitType); }
|
| int getIntValue() const { return getValue<int>(); }
|
|
|
| - template<typename T> inline T getValue(unsigned short unitType, ExceptionState& es) const { return clampTo<T>(getDoubleValue(unitType, es)); }
|
| + template<typename T> inline T getValue(unsigned short unitType, ExceptionState& exceptionState) const { return clampTo<T>(getDoubleValue(unitType, exceptionState)); }
|
| template<typename T> inline T getValue(unsigned short unitType) const { return clampTo<T>(getDoubleValue(unitType)); }
|
| template<typename T> inline T getValue() const { return clampTo<T>(getDoubleValue()); }
|
|
|
|
|