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

Unified Diff: third_party/WebKit/Source/core/css/CSSPrimitiveValueMappings.h

Issue 2622623003: Moved -webkit-rtl-ordering to be generated in ComputedStyleBase. (Closed)
Patch Set: Created 3 years, 11 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 | « no previous file | third_party/WebKit/Source/core/css/CSSProperties.in » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 fffe65fe0bbca9ae598d5dca3dd97919d4af8952..aa3d18539f1c3e907c97e198b3f439c7ca327e13 100644
--- a/third_party/WebKit/Source/core/css/CSSPrimitiveValueMappings.h
+++ b/third_party/WebKit/Source/core/css/CSSPrimitiveValueMappings.h
@@ -3590,25 +3590,25 @@ template <>
inline EOrder CSSIdentifierValue::convertTo() const {
switch (m_valueID) {
case CSSValueLogical:
- return EOrder::Logical;
+ return EOrder::kLogical;
case CSSValueVisual:
- return EOrder::Visual;
+ return EOrder::kVisual;
default:
break;
}
ASSERT_NOT_REACHED();
- return EOrder::Logical;
+ return EOrder::kLogical;
}
template <>
inline CSSIdentifierValue::CSSIdentifierValue(EOrder e)
: CSSValue(IdentifierClass) {
switch (e) {
- case EOrder::Logical:
+ case EOrder::kLogical:
m_valueID = CSSValueLogical;
break;
- case EOrder::Visual:
+ case EOrder::kVisual:
m_valueID = CSSValueVisual;
break;
}
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/css/CSSProperties.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698