| Index: third_party/WebKit/Source/core/frame/DOMWindow.cpp
|
| diff --git a/third_party/WebKit/Source/core/frame/DOMWindow.cpp b/third_party/WebKit/Source/core/frame/DOMWindow.cpp
|
| index 4022728a837a755008890dea2b2ecbc75e6e75db..7ca121eb6066d202c5a5c0efdaa785f908cb20c8 100644
|
| --- a/third_party/WebKit/Source/core/frame/DOMWindow.cpp
|
| +++ b/third_party/WebKit/Source/core/frame/DOMWindow.cpp
|
| @@ -45,13 +45,13 @@ v8::Local<v8::Object> DOMWindow::wrap(v8::Isolate*, v8::Local<v8::Object> creati
|
| {
|
| // DOMWindow must never be wrapped with wrap method. The wrappers must be
|
| // created at WindowProxy::installDOMWindow().
|
| - RELEASE_ASSERT_NOT_REACHED();
|
| + RELEASE_NOTREACHED();
|
| return v8::Local<v8::Object>();
|
| }
|
|
|
| v8::Local<v8::Object> DOMWindow::associateWithWrapper(v8::Isolate*, const WrapperTypeInfo*, v8::Local<v8::Object> wrapper)
|
| {
|
| - RELEASE_ASSERT_NOT_REACHED(); // same as wrap method
|
| + RELEASE_NOTREACHED(); // same as wrap method
|
| return v8::Local<v8::Object>();
|
| }
|
|
|
|
|