| 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 88a1b4a8166fc8247ec8b81875c6632d8100d2cf..92c7ed51fc5d3da909fa3f7ba0c240e92d97e2c2 100644
|
| --- a/content/public/common/assert_matching_enums.cc
|
| +++ b/content/public/common/assert_matching_enums.cc
|
| @@ -14,13 +14,14 @@ namespace content {
|
| #define COMPILE_ASSERT_MATCHING_ENUM(expected, actual) \
|
| COMPILE_ASSERT(int(expected) == int(actual), mismatching_enums)
|
|
|
| -COMPILE_ASSERT_MATCHING_ENUM(blink::WebScreenOrientationPortraitPrimary,
|
| - PORTRAIT_PRIMARY);
|
| -COMPILE_ASSERT_MATCHING_ENUM(blink::WebScreenOrientationLandscapePrimary,
|
| - LANDSCAPE_PRIMARY);
|
| -COMPILE_ASSERT_MATCHING_ENUM(blink::WebScreenOrientationPortraitSecondary,
|
| - PORTRAIT_SECONDARY);
|
| -COMPILE_ASSERT_MATCHING_ENUM(blink::WebScreenOrientationLandscapeSecondary,
|
| - LANDSCAPE_SECONDARY);
|
| +// TODO(mlamouri): this is temporary to allow to change the enum in Blink.
|
| +// COMPILE_ASSERT_MATCHING_ENUM(blink::WebScreenOrientationPortraitPrimary,
|
| +// PORTRAIT_PRIMARY);
|
| +// COMPILE_ASSERT_MATCHING_ENUM(blink::WebScreenOrientationLandscapePrimary,
|
| +// LANDSCAPE_PRIMARY);
|
| +// COMPILE_ASSERT_MATCHING_ENUM(blink::WebScreenOrientationPortraitSecondary,
|
| +// PORTRAIT_SECONDARY);
|
| +// COMPILE_ASSERT_MATCHING_ENUM(blink::WebScreenOrientationLandscapeSecondary,
|
| +// LANDSCAPE_SECONDARY);
|
|
|
| } // namespace content
|
|
|