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

Unified Diff: Source/web/AssertMatchingEnums.cpp

Issue 398673003: Rename WebCore namespace to blink in bindings and web (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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
« no previous file with comments | « Source/build/mac/Prefix.h ('k') | Source/web/AssociatedURLLoader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/AssertMatchingEnums.cpp
diff --git a/Source/web/AssertMatchingEnums.cpp b/Source/web/AssertMatchingEnums.cpp
index 4865cf34f774eb351c15b0ea1f471ab5e118f4e2..c59c5e9f1f4f9f0f378f7594031ccd688ac0cb12 100644
--- a/Source/web/AssertMatchingEnums.cpp
+++ b/Source/web/AssertMatchingEnums.cpp
@@ -133,10 +133,10 @@
#include "wtf/text/StringImpl.h"
#define COMPILE_ASSERT_MATCHING_ENUM(webkit_name, webcore_name) \
- COMPILE_ASSERT(int(blink::webkit_name) == int(WebCore::webcore_name), mismatching_enums)
+ COMPILE_ASSERT(int(blink::webkit_name) == int(blink::webcore_name), mismatching_enums)
#define COMPILE_ASSERT_MATCHING_UINT64(webkit_name, webcore_name) \
- COMPILE_ASSERT(blink::webkit_name == WebCore::webcore_name, mismatching_enums)
+ COMPILE_ASSERT(blink::webkit_name == blink::webcore_name, mismatching_enums)
COMPILE_ASSERT_MATCHING_ENUM(WebAXEventActiveDescendantChanged, AXObjectCache::AXActiveDescendantChanged);
COMPILE_ASSERT_MATCHING_ENUM(WebAXEventAlert, AXObjectCache::AXAlert);
« no previous file with comments | « Source/build/mac/Prefix.h ('k') | Source/web/AssociatedURLLoader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698