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

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

Issue 2909233002: Generate getters/setters for TextSizeAdjust. (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
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSProperties.json5 ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 e0fb7a0e5bf0b68c0be6285ae49b5083478de214..5626de6d3ef32ac04272b592a1bac84dde87eb6e 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyle.h
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.h
@@ -1740,17 +1740,6 @@ class CORE_EXPORT ComputedStyle : public ComputedStyleBase<ComputedStyle>,
bool TextShadowDataEquivalent(const ComputedStyle&) const;
- // text-size-adjust (aka -webkit-text-size-adjust)
- static TextSizeAdjust InitialTextSizeAdjust() {
- return TextSizeAdjust::AdjustAuto();
- }
- TextSizeAdjust GetTextSizeAdjust() const {
- return rare_inherited_data_->text_size_adjust_;
- }
- void SetTextSizeAdjust(TextSizeAdjust size_adjust) {
- SET_VAR(rare_inherited_data_, text_size_adjust_, size_adjust);
- }
-
// -webkit-line-break
static LineBreak InitialLineBreak() { return LineBreak::kAuto; }
LineBreak GetLineBreak() const {
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSProperties.json5 ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698