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

Unified Diff: third_party/WebKit/Source/build/scripts/templates/BaseComputedStyleConstants.h.tmpl

Issue 2187493004: Add a generated ComputedStyleBase class that ComputedStyle extends (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@_make_visibility_enum_class_rebase
Patch Set: Created 4 years, 5 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/build/scripts/templates/BaseComputedStyleConstants.h.tmpl
diff --git a/third_party/WebKit/Source/build/scripts/templates/BaseComputedStyleConstants.h.tmpl b/third_party/WebKit/Source/build/scripts/templates/BaseComputedStyleConstants.h.tmpl
new file mode 100644
index 0000000000000000000000000000000000000000..e3dfabd06a77551667dd0c4e98e3d8f1f3803042
--- /dev/null
+++ b/third_party/WebKit/Source/build/scripts/templates/BaseComputedStyleConstants.h.tmpl
@@ -0,0 +1,25 @@
+{% from 'macros.tmpl' import license %}
+{{license()}}
+
+#ifndef BaseComputedStyleConstants_h
+#define BaseComputedStyleConstants_h
+
+namespace blink {
+
+{% for enum_name, enum_values in enums.items() %}
+enum class {{enum_name}} {
+ {% for enum_value in enum_values %}
+ {{enum_value}},
+ {% endfor %}
+};
+
+// TODO(sashab): Remove this and update callsites to use a boolean.
+enum IsAtShadowBoundary {
+ AtShadowBoundary,
+ NotAtShadowBoundary,
+};
+
+{% endfor %}
+} // namespace blink
+
+#endif // BaseComputedStyleConstants_h

Powered by Google App Engine
This is Rietveld 408576698