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

Unified Diff: third_party/WebKit/Source/core/css/resolver/StyleResolverState.h

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/StyleResolverState.h
diff --git a/third_party/WebKit/Source/core/css/resolver/StyleResolverState.h b/third_party/WebKit/Source/core/css/resolver/StyleResolverState.h
index 7ea8f17c81dfb154db57c01655f46b0045901cae..c1eea4842862e0bc8e8526944aa8f6114e3b10f5 100644
--- a/third_party/WebKit/Source/core/css/resolver/StyleResolverState.h
+++ b/third_party/WebKit/Source/core/css/resolver/StyleResolverState.h
@@ -201,7 +201,7 @@ class CORE_EXPORT StyleResolverState {
style_->SetWritingMode(new_writing_mode);
font_builder_.DidChangeWritingMode();
}
- void SetTextOrientation(TextOrientation text_orientation) {
+ void SetTextOrientation(ETextOrientation text_orientation) {
if (style_->SetTextOrientation(text_orientation))
font_builder_.DidChangeTextOrientation();
}

Powered by Google App Engine
This is Rietveld 408576698