use AtomEventProcessingWindow as native window.

This commit is contained in:
Cheng Zhao 2013-04-12 15:53:29 +08:00
parent 3391370857
commit af94c434ac
4 changed files with 43 additions and 6 deletions

View file

@ -78,6 +78,14 @@ void NativeWindow::InitFromOptions(base::DictionaryValue* options) {
Show();
}
void NativeWindow::ShowDevTools() {
inspectable_web_contents()->ShowDevTools();
}
void NativeWindow::CloseDevTools() {
// inspectable_web_contents()->CloseDevTools();
}
content::WebContents* NativeWindow::GetWebContents() const {
return inspectable_web_contents_->GetWebContents();
}