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

Unified Diff: third_party/WebKit/Source/core/css/resolver/StyleBuilderCustom.cpp

Issue 2913723002: Generate enum/getters/setters/mappings for text-orientation. (Closed)
Patch Set: Rebase Created 3 years, 7 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
Index: third_party/WebKit/Source/core/css/resolver/StyleBuilderCustom.cpp
diff --git a/third_party/WebKit/Source/core/css/resolver/StyleBuilderCustom.cpp b/third_party/WebKit/Source/core/css/resolver/StyleBuilderCustom.cpp
index 909904ef298581529698c93e6ef86d1fb8f4a795..0ce638345d8b3bd013d30569805bdcb189ca6e97 100644
--- a/third_party/WebKit/Source/core/css/resolver/StyleBuilderCustom.cpp
+++ b/third_party/WebKit/Source/core/css/resolver/StyleBuilderCustom.cpp
@@ -827,14 +827,14 @@ void StyleBuilderFunctions::applyValueCSSPropertyTextOrientation(
StyleResolverState& state,
const CSSValue& value) {
state.SetTextOrientation(
- ToCSSIdentifierValue(value).ConvertTo<TextOrientation>());
+ ToCSSIdentifierValue(value).ConvertTo<ETextOrientation>());
}
void StyleBuilderFunctions::applyValueCSSPropertyWebkitTextOrientation(
StyleResolverState& state,
const CSSValue& value) {
state.SetTextOrientation(
- ToCSSIdentifierValue(value).ConvertTo<TextOrientation>());
+ ToCSSIdentifierValue(value).ConvertTo<ETextOrientation>());
}
void StyleBuilderFunctions::applyValueCSSPropertyVariable(

Powered by Google App Engine
This is Rietveld 408576698