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

Unified Diff: Source/bindings/core/v8/ExceptionStatePlaceholder.h

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/bindings/core/v8/ExceptionState.cpp ('k') | Source/bindings/core/v8/ExceptionStatePlaceholder.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/ExceptionStatePlaceholder.h
diff --git a/Source/bindings/core/v8/ExceptionStatePlaceholder.h b/Source/bindings/core/v8/ExceptionStatePlaceholder.h
index 1afcc4792a60d1b0994e674f4319257178c3ae8b..91d65b212a9b7d427bcab92788fc9456a6711da8 100644
--- a/Source/bindings/core/v8/ExceptionStatePlaceholder.h
+++ b/Source/bindings/core/v8/ExceptionStatePlaceholder.h
@@ -36,7 +36,7 @@
#include "wtf/text/WTFString.h"
#include <v8.h>
-namespace WebCore {
+namespace blink {
class ExceptionState;
@@ -51,7 +51,7 @@ public:
virtual void throwSecurityError(const String& sanitizedMessage, const String& unsanitizedMessage = String()) OVERRIDE { }
};
-#define IGNORE_EXCEPTION (::WebCore::IgnorableExceptionState().returnThis())
+#define IGNORE_EXCEPTION (::blink::IgnorableExceptionState().returnThis())
#if ENABLE(ASSERT)
@@ -68,14 +68,14 @@ private:
int m_line;
};
-#define ASSERT_NO_EXCEPTION (::WebCore::NoExceptionStateAssertionChecker(__FILE__, __LINE__).returnThis())
+#define ASSERT_NO_EXCEPTION (::blink::NoExceptionStateAssertionChecker(__FILE__, __LINE__).returnThis())
#else
-#define ASSERT_NO_EXCEPTION (::WebCore::IgnorableExceptionState().returnThis())
+#define ASSERT_NO_EXCEPTION (::blink::IgnorableExceptionState().returnThis())
#endif
-} // namespace WebCore
+} // namespace blink
#endif // ExceptionStatePlaceholder_h
« no previous file with comments | « Source/bindings/core/v8/ExceptionState.cpp ('k') | Source/bindings/core/v8/ExceptionStatePlaceholder.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698