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

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

Issue 2912923003: Generate enum/getters/setters/mappings for user-modify. (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/style/ComputedStyle.h
diff --git a/third_party/WebKit/Source/core/style/ComputedStyle.h b/third_party/WebKit/Source/core/style/ComputedStyle.h
index 2e37d8a8bfe9e97322476b0e433e6d3f1409b841..3c48cb7331311b990ef3b90150d050964cb7b895 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyle.h
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.h
@@ -1740,15 +1740,6 @@ class CORE_EXPORT ComputedStyle : public ComputedStyleBase<ComputedStyle>,
SET_VAR(rare_non_inherited_data_, user_drag_, d);
}
- // -webkit-user-modify
- static EUserModify InitialUserModify() { return EUserModify::kReadOnly; }
- EUserModify UserModify() const {
- return static_cast<EUserModify>(rare_inherited_data_->user_modify_);
- }
- void SetUserModify(EUserModify u) {
- SET_VAR(rare_inherited_data_, user_modify_, static_cast<unsigned>(u));
- }
-
// caret-color
void SetCaretColor(const StyleAutoColor& color) {
SET_VAR(rare_inherited_data_, caret_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