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

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

Issue 2941623004: Generate enum/getters/setters/mappings for isolation. (Closed)
Patch Set: Created 3 years, 6 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 ff869fc1718e43d98105dfb0ab5c342739393d64..48b00bf4f24b4f92f7a65bf0e75e3d445acb5731 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyle.h
+++ b/third_party/WebKit/Source/core/style/ComputedStyle.h
@@ -1020,15 +1020,6 @@ class CORE_EXPORT ComputedStyle : public ComputedStyleBase,
SetRespectImageOrientationInternal(v);
}
- // isolation
- static EIsolation InitialIsolation() { return EIsolation::kAuto; }
- EIsolation Isolation() const {
- return static_cast<EIsolation>(rare_non_inherited_data_->isolation_);
- }
- void SetIsolation(EIsolation v) {
- rare_non_inherited_data_.Access()->isolation_ = static_cast<unsigned>(v);
- }
-
// -webkit-margin-before-collapse (aka -webkit-margin-top-collapse)
static EMarginCollapse InitialMarginBeforeCollapse() {
return kMarginCollapseCollapse;
« 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