| Index: sky/engine/core/css/CSSPrimitiveValueMappings.h
|
| diff --git a/sky/engine/core/css/CSSPrimitiveValueMappings.h b/sky/engine/core/css/CSSPrimitiveValueMappings.h
|
| index f605d07e0c05a452c48026198025d782463b0ee9..c5ddf956737b6eebc174592a659c11b40c5d886c 100644
|
| --- a/sky/engine/core/css/CSSPrimitiveValueMappings.h
|
| +++ b/sky/engine/core/css/CSSPrimitiveValueMappings.h
|
| @@ -127,37 +127,6 @@ template<> inline CSSPrimitiveValue::operator ColumnFill() const
|
| return ColumnFillBalance;
|
| }
|
|
|
| -template<> inline CSSPrimitiveValue::CSSPrimitiveValue(PrintColorAdjust value)
|
| - : CSSValue(PrimitiveClass)
|
| -{
|
| - m_primitiveUnitType = CSS_VALUE_ID;
|
| - switch (value) {
|
| - case PrintColorAdjustExact:
|
| - m_value.valueID = CSSValueExact;
|
| - break;
|
| - case PrintColorAdjustEconomy:
|
| - m_value.valueID = CSSValueEconomy;
|
| - break;
|
| - }
|
| -}
|
| -
|
| -template<> inline CSSPrimitiveValue::operator PrintColorAdjust() const
|
| -{
|
| - ASSERT(isValueID());
|
| - switch (m_value.valueID) {
|
| - case CSSValueEconomy:
|
| - return PrintColorAdjustEconomy;
|
| - case CSSValueExact:
|
| - return PrintColorAdjustExact;
|
| - default:
|
| - break;
|
| - }
|
| -
|
| - ASSERT_NOT_REACHED();
|
| - return PrintColorAdjustEconomy;
|
| -}
|
| -
|
| -
|
| template<> inline CSSPrimitiveValue::CSSPrimitiveValue(EBorderStyle e)
|
| : CSSValue(PrimitiveClass)
|
| {
|
|
|