| Index: Source/web/AssertMatchingEnums.cpp
|
| diff --git a/Source/web/AssertMatchingEnums.cpp b/Source/web/AssertMatchingEnums.cpp
|
| index 644ced4d678a6972c3f366f7a160ac442b145b10..ecca8b9384c8181d43d3e19d68e114b9190c52c1 100644
|
| --- a/Source/web/AssertMatchingEnums.cpp
|
| +++ b/Source/web/AssertMatchingEnums.cpp
|
| @@ -132,10 +132,10 @@
|
| #include "wtf/text/StringImpl.h"
|
|
|
| #define COMPILE_ASSERT_MATCHING_ENUM(webkit_name, webcore_name) \
|
| - COMPILE_ASSERT(int(WebKit::webkit_name) == int(WebCore::webcore_name), mismatching_enums)
|
| + COMPILE_ASSERT(int(blink::webkit_name) == int(WebCore::webcore_name), mismatching_enums)
|
|
|
| #define COMPILE_ASSERT_MATCHING_UINT64(webkit_name, webcore_name) \
|
| - COMPILE_ASSERT(WebKit::webkit_name == WebCore::webcore_name, mismatching_enums)
|
| + COMPILE_ASSERT(blink::webkit_name == WebCore::webcore_name, mismatching_enums)
|
|
|
| // These constants are in WTF, bring them into WebCore so the ASSERT still works for them!
|
| namespace WebCore {
|
|
|