| Index: third_party/WebKit/Source/core/css/CSSPrimitiveValueMappings.h
|
| diff --git a/third_party/WebKit/Source/core/css/CSSPrimitiveValueMappings.h b/third_party/WebKit/Source/core/css/CSSPrimitiveValueMappings.h
|
| index 70fe4f80755cbb2c442de8ca6538ee420a8348ac..762db0c2e42791a4df7a01cc56ad35f4cd0911c5 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSPrimitiveValueMappings.h
|
| +++ b/third_party/WebKit/Source/core/css/CSSPrimitiveValueMappings.h
|
| @@ -1387,34 +1387,6 @@ inline TextCombine CSSIdentifierValue::ConvertTo() const {
|
| }
|
|
|
| template <>
|
| -inline CSSIdentifierValue::CSSIdentifierValue(RubyPosition position)
|
| - : CSSValue(kIdentifierClass) {
|
| - switch (position) {
|
| - case RubyPosition::kBefore:
|
| - value_id_ = CSSValueBefore;
|
| - break;
|
| - case RubyPosition::kAfter:
|
| - value_id_ = CSSValueAfter;
|
| - break;
|
| - }
|
| -}
|
| -
|
| -template <>
|
| -inline RubyPosition CSSIdentifierValue::ConvertTo() const {
|
| - switch (value_id_) {
|
| - case CSSValueBefore:
|
| - return RubyPosition::kBefore;
|
| - case CSSValueAfter:
|
| - return RubyPosition::kAfter;
|
| - default:
|
| - break;
|
| - }
|
| -
|
| - NOTREACHED();
|
| - return RubyPosition::kBefore;
|
| -}
|
| -
|
| -template <>
|
| inline CSSIdentifierValue::CSSIdentifierValue(TextEmphasisPosition position)
|
| : CSSValue(kIdentifierClass) {
|
| switch (position) {
|
|
|