Index: content/public/common/assert_matching_enums.cc |
diff --git a/content/public/common/assert_matching_enums.cc b/content/public/common/assert_matching_enums.cc |
index 9a0e89884ce03655c156a2485a399229824d6e1d..3f0b5287d8d5d20247e11088220a037eba93e9fc 100644 |
--- a/content/public/common/assert_matching_enums.cc |
+++ b/content/public/common/assert_matching_enums.cc |
@@ -14,6 +14,7 @@ namespace content { |
#define COMPILE_ASSERT_MATCHING_ENUM(expected, actual) \ |
COMPILE_ASSERT(int(expected) == int(actual), mismatching_enums) |
+// ScreenOrientationValues |
COMPILE_ASSERT_MATCHING_ENUM(blink::WebScreenOrientationLockDefault, |
DEFAULT); |
COMPILE_ASSERT_MATCHING_ENUM(blink::WebScreenOrientationLockPortraitPrimary, |
@@ -31,4 +32,9 @@ COMPILE_ASSERT_MATCHING_ENUM(blink::WebScreenOrientationLockLandscape, |
COMPILE_ASSERT_MATCHING_ENUM(blink::WebScreenOrientationLockPortrait, |
PORTRAIT); |
+// SupportsType |
+COMPILE_ASSERT_MATCHING_ENUM(blink::IsNotSupported, IsNotSupported); |
+COMPILE_ASSERT_MATCHING_ENUM(blink::IsSupported, IsSupported); |
+COMPILE_ASSERT_MATCHING_ENUM(blink::MayBeSupported, MayBeSupported); |
+ |
} // namespace content |