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

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

Issue 2633633003: Changed EInsideLink to an enum class with an unsigned type. (Closed)
Patch Set: Rebase. Created 3 years, 11 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 3df5a14be2781298b0abfd6c3f3c1020f9a3db22..c9f8b423d65a3f014c42dc9ebb438c096aefca00 100644
--- a/third_party/WebKit/Source/core/style/ComputedStyleConstants.h
+++ b/third_party/WebKit/Source/core/style/ComputedStyleConstants.h
@@ -405,7 +405,11 @@ enum class EDisplay : unsigned {
None
};
-enum EInsideLink { NotInsideLink, InsideUnvisitedLink, InsideVisitedLink };
+enum class EInsideLink : unsigned {
+ kNotInsideLink,
+ kInsideUnvisitedLink,
+ kInsideVisitedLink
+};
enum ETransformStyle3D { TransformStyle3DFlat, TransformStyle3DPreserve3D };

Powered by Google App Engine
This is Rietveld 408576698