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

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

Issue 2897833003: Generate getters/setters for tab-size. (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
« 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 33fc145cd7c998f22569ce195c4070f162c5e0a1..25d92dded74cc42225b5f0993d0693ba38a3b8a4 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyle.h
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.h
@@ -1683,13 +1683,6 @@ class CORE_EXPORT ComputedStyle : public ComputedStyleBase<ComputedStyle>,
SET_VAR(rare_inherited_data_, speak_, static_cast<unsigned>(s));
}
- // tab-size
- static TabSize InitialTabSize() { return TabSize(8); }
- TabSize GetTabSize() const { return rare_inherited_data_->tab_size_; }
- void SetTabSize(TabSize size) {
- SET_VAR(rare_inherited_data_, tab_size_, size);
- }
-
// text-align-last
static TextAlignLast InitialTextAlignLast() { return kTextAlignLastAuto; }
TextAlignLast GetTextAlignLast() 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