| Index: third_party/WebKit/Source/bindings/core/v8/WindowProxy.cpp
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/WindowProxy.cpp b/third_party/WebKit/Source/bindings/core/v8/WindowProxy.cpp
|
| index 350dfce327c3cc6971e8ba7e64535fba637adb3b..3689332d368b76c2f4e6f12fce1fd1fc9f2a01e6 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/WindowProxy.cpp
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/WindowProxy.cpp
|
| @@ -62,11 +62,11 @@ WindowProxy::WindowProxy(v8::Isolate* isolate,
|
| lifecycle_(Lifecycle::kContextIsUninitialized) {}
|
|
|
| void WindowProxy::ClearForClose() {
|
| - DisposeContext(kDoNotDetachGlobal);
|
| + DisposeContext(Lifecycle::kFrameIsDetached);
|
| }
|
|
|
| void WindowProxy::ClearForNavigation() {
|
| - DisposeContext(kDetachGlobal);
|
| + DisposeContext(Lifecycle::kGlobalObjectIsDetached);
|
| }
|
|
|
| v8::Local<v8::Object> WindowProxy::GlobalProxyIfNotDetached() {
|
|
|