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

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

Issue 2877333002: Make EWordBreak an enum class. (Closed)
Patch Set: Release 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/ComputedStyleConstants.h
diff --git a/third_party/WebKit/Source/core/style/ComputedStyleConstants.h b/third_party/WebKit/Source/core/style/ComputedStyleConstants.h
index 8f1c39bbe9ee660c78f3f61cf1ba62cfe34668f2..5a17c34ba4ea7e0b7932c4401a9dbcb2f4ae069a 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyleConstants.h
+++ b/third_party/WebKit/Source/core/style/ComputedStyleConstants.h
@@ -198,12 +198,7 @@ enum ObjectFit {
// Word Break Values. Matches WinIE and CSS3
-enum EWordBreak {
- kNormalWordBreak,
- kBreakAllWordBreak,
- kKeepAllWordBreak,
- kBreakWordBreak
-};
+enum class EWordBreak { kNormal, kBreakAll, kKeepAll, kBreakWord };
enum class EOverflowWrap { kNormal, kBreakWord };
« no previous file with comments | « third_party/WebKit/Source/core/style/ComputedStyle.h ('k') | third_party/WebKit/Source/core/style/StyleRareInheritedData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698