Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(340)

Unified Diff: trunk/Source/core/css/CSSPrimitiveValueMappings.h

Issue 195823006: Revert 169264 "Add plumbing for font-stretch" (Closed) Base URL: svn://svn.chromium.org/blink/
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « trunk/Source/core/css/CSSFontValue.cpp ('k') | trunk/Source/core/css/CSSProperties.in » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: trunk/Source/core/css/CSSPrimitiveValueMappings.h
===================================================================
--- trunk/Source/core/css/CSSPrimitiveValueMappings.h (revision 169272)
+++ trunk/Source/core/css/CSSPrimitiveValueMappings.h (working copy)
@@ -3482,76 +3482,6 @@
return FontWeightNormal;
}
-template<> inline CSSPrimitiveValue::CSSPrimitiveValue(FontStretch stretch)
- : CSSValue(PrimitiveClass)
-{
- fprintf(stderr, "CSSPrimitiveValue::CSSPrimitiveValue(FontStretch stretch)\n");
- m_primitiveUnitType = CSS_VALUE_ID;
- switch (stretch) {
- case FontStretchUltraCondensed:
- m_value.valueID = CSSValueUltraCondensed;
- return;
- case FontStretchExtraCondensed:
- m_value.valueID = CSSValueExtraCondensed;
- return;
- case FontStretchCondensed:
- m_value.valueID = CSSValueCondensed;
- return;
- case FontStretchSemiCondensed:
- m_value.valueID = CSSValueSemiCondensed;
- return;
- case FontStretchNormal:
- m_value.valueID = CSSValueNormal;
- return;
- case FontStretchSemiExpanded:
- m_value.valueID = CSSValueSemiExpanded;
- return;
- case FontStretchExpanded:
- m_value.valueID = CSSValueExpanded;
- return;
- case FontStretchExtraExpanded:
- m_value.valueID = CSSValueExtraExpanded;
- return;
- case FontStretchUltraExpanded:
- m_value.valueID = CSSValueUltraExpanded;
- return;
- }
-
- ASSERT_NOT_REACHED();
- m_value.valueID = CSSValueNormal;
-}
-
-template<> inline CSSPrimitiveValue::operator FontStretch() const
-{
- fprintf(stderr, "CSSPrimitiveValue::operator FontStretch\n");
- ASSERT(isValueID());
- switch (m_value.valueID) {
- case CSSValueUltraCondensed:
- return FontStretchUltraCondensed;
- case CSSValueExtraCondensed:
- return FontStretchExtraCondensed;
- case CSSValueCondensed:
- return FontStretchCondensed;
- case CSSValueSemiCondensed:
- return FontStretchSemiCondensed;
- case CSSValueNormal:
- return FontStretchNormal;
- case CSSValueSemiExpanded:
- return FontStretchSemiExpanded;
- case CSSValueExpanded:
- return FontStretchExpanded;
- case CSSValueExtraExpanded:
- return FontStretchExtraExpanded;
- case CSSValueUltraExpanded:
- return FontStretchUltraExpanded;
- default:
- break;
- }
-
- ASSERT_NOT_REACHED();
- return FontStretchNormal;
-}
-
template<> inline CSSPrimitiveValue::CSSPrimitiveValue(FontItalic italic)
: CSSValue(PrimitiveClass)
{
« no previous file with comments | « trunk/Source/core/css/CSSFontValue.cpp ('k') | trunk/Source/core/css/CSSProperties.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698