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

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

Issue 2677033002: Remove BreakAlways from EBreak enum (Closed)
Patch Set: Created 3 years, 10 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/ComputedStyleCSSValueMapping.cpp » ('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 3cf65c8715143e1cc5a780e3a80033211d12228d..ffbc1f79827b8d2003ab881d9bde40e039b582dc 100644
--- a/third_party/WebKit/Source/core/css/CSSPrimitiveValueMappings.h
+++ b/third_party/WebKit/Source/core/css/CSSPrimitiveValueMappings.h
@@ -1959,9 +1959,6 @@ inline CSSIdentifierValue::CSSIdentifierValue(EBreak e)
case BreakAuto:
m_valueID = CSSValueAuto;
break;
- case BreakAlways:
- m_valueID = CSSValueAlways;
- break;
case BreakAvoid:
m_valueID = CSSValueAvoid;
break;
@@ -2001,8 +1998,6 @@ inline EBreak CSSIdentifierValue::convertTo() const {
return BreakAuto;
case CSSValueAvoid:
return BreakAvoid;
- case CSSValueAlways:
- return BreakAlways;
case CSSValueAvoidPage:
return BreakAvoidPage;
case CSSValuePage:
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698