| 209 | } |
| 210 | |
| 211 | void Browser::InitiateBrowserReattach() { |
| 212 | LOG(TRACE) << "Entering Browser::InitiateBrowserReattach"; |
| 213 | LOG(DEBUG) << "Requesting browser reattach"; |
| 214 | this->known_process_ids_.clear(); |
| 215 | WindowUtilities::GetProcessesByName(L"iexplore.exe", |
| 216 | &this->known_process_ids_); |
| 217 | this->set_is_awaiting_new_process(true); |
| 218 | ::SendMessage(this->executor_handle(), WD_BEFORE_BROWSER_REATTACH, NULL, NULL); |
| 219 | } |
| 220 | |
| 221 | void Browser::ReattachBrowser(IWebBrowser2* browser) { |
| 222 | LOG(TRACE) << "Entering Browser::ReattachBrowser"; |
no test coverage detected