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

Unified Diff: third_party/WebKit/Source/core/css/CSSPrimitiveValueMappings.h

Issue 2844083005: Generate enum/getters/setters/mappings for box-decoration-break. (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 | « no previous file | third_party/WebKit/Source/core/css/CSSProperties.json5 » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/css/CSSPrimitiveValueMappings.h
diff --git a/third_party/WebKit/Source/core/css/CSSPrimitiveValueMappings.h b/third_party/WebKit/Source/core/css/CSSPrimitiveValueMappings.h
index fbb26569ae35c88ad9aebdce86694d6d23c845d6..c7eb14dadc1547d198be031ca79175caba11bc5d 100644
--- a/third_party/WebKit/Source/core/css/CSSPrimitiveValueMappings.h
+++ b/third_party/WebKit/Source/core/css/CSSPrimitiveValueMappings.h
@@ -710,34 +710,6 @@ inline EBoxAlignment CSSIdentifierValue::ConvertTo() const {
return BSTRETCH;
}
-template <>
-inline CSSIdentifierValue::CSSIdentifierValue(EBoxDecorationBreak e)
- : CSSValue(kIdentifierClass) {
- switch (e) {
- case EBoxDecorationBreak::kSlice:
- value_id_ = CSSValueSlice;
- break;
- case EBoxDecorationBreak::kClone:
- value_id_ = CSSValueClone;
- break;
- }
-}
-
-template <>
-inline EBoxDecorationBreak CSSIdentifierValue::ConvertTo() const {
- switch (value_id_) {
- case CSSValueSlice:
- return EBoxDecorationBreak::kSlice;
- case CSSValueClone:
- return EBoxDecorationBreak::kClone;
- default:
- break;
- }
-
- NOTREACHED();
- return EBoxDecorationBreak::kSlice;
-}
-
template <>
inline CSSIdentifierValue::CSSIdentifierValue(BackgroundEdgeOrigin e)
: CSSValue(kIdentifierClass) {
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/css/CSSProperties.json5 » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698