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

Unified Diff: third_party/WebKit/Source/core/style/ComputedStyle.h

Issue 2915683002: Generate enum/getters/setters/mappings for ruby-position. (Closed)
Patch Set: 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/style/ComputedStyle.h
diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.h b/third_party/WebKit/Source/core/style/ComputedStyle.h
index aec4bd46d6b9d3bdc12a756d13a7e73a06934c55..1a4daed796a4818e89efd8ba4b795154e7f31be2 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyle.h
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.h
@@ -1774,16 +1774,6 @@ class CORE_EXPORT ComputedStyle : public ComputedStyleBase<ComputedStyle>,
SET_VAR(rare_non_inherited_data_, line_clamp, c);
}
- // -webkit-ruby-position
- static RubyPosition InitialRubyPosition() { return RubyPosition::kBefore; }
- RubyPosition GetRubyPosition() const {
- return static_cast<RubyPosition>(rare_inherited_data_->ruby_position_);
- }
- void SetRubyPosition(RubyPosition position) {
- SET_VAR(rare_inherited_data_, ruby_position_,
- static_cast<unsigned>(position));
- }
-
// -webkit-text-fill-color
void SetTextFillColor(const StyleColor& color) {
SET_VAR(rare_inherited_data_, text_fill_color_, color.Resolve(Color()));
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSProperties.json5 ('k') | third_party/WebKit/Source/core/style/ComputedStyleConstants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698