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

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

Issue 2546333002: Changed Order to an enum class and renamed its members (Closed)
Patch Set: Created 4 years 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 75bb0ccfb48c5c5be053575525fcab0c7b35815c..d907b79c5aae0e08d8405b718707bf1663bf2a0d 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyleConstants.h
+++ b/third_party/WebKit/Source/core/style/ComputedStyleConstants.h
@@ -566,7 +566,7 @@ enum EImageRendering {
ImageRenderingPixelated
};
-enum Order { LogicalOrder = 0, VisualOrder };
+enum class EOrder : unsigned { Logical, Visual };
enum RubyPosition { RubyPositionBefore, RubyPositionAfter };

Powered by Google App Engine
This is Rietveld 408576698