| 219 | } |
| 220 | |
| 221 | void Browser::ReattachBrowser(IWebBrowser2* browser) { |
| 222 | LOG(TRACE) << "Entering Browser::ReattachBrowser"; |
| 223 | this->browser_ = browser; |
| 224 | this->AttachEvents(); |
| 225 | this->set_is_awaiting_new_process(false); |
| 226 | LOG(DEBUG) << "Reattach complete"; |
| 227 | } |
| 228 | |
| 229 | void Browser::GetDocument(IHTMLDocument2** doc) { |
| 230 | this->GetDocument(false, doc); |
no test coverage detected