| 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
|
|
|