Allowing destroying a closed window

This commit is contained in:
Cheng Zhao 2015-06-25 13:08:11 +08:00
parent afa9f30aac
commit eb370ba22a
2 changed files with 5 additions and 1 deletions

View file

@ -498,6 +498,9 @@ void NativeWindow::RenderViewCreated(
}
void NativeWindow::CloseContents(content::WebContents* source) {
if (!inspectable_web_contents_)
return;
inspectable_web_contents_->GetView()->SetDelegate(nullptr);
inspectable_web_contents_ = nullptr;

View file

@ -16,7 +16,8 @@
#include "atom/common/draggable_region.h"
#include "atom/common/options_switches.h"
#include "base/strings/utf_string_conversions.h"
#include "browser/inspectable_web_contents_view.h"
#include "brightray/browser/inspectable_web_contents.h"
#include "brightray/browser/inspectable_web_contents_view.h"
#include "content/public/browser/native_web_keyboard_event.h"
#include "native_mate/dictionary.h"
#include "ui/aura/window.h"