| 35 | namespace webdriver { |
| 36 | |
| 37 | Browser::Browser(IWebBrowser2* browser, HWND hwnd, HWND session_handle, bool is_edge_chromium) : DocumentHost(hwnd, session_handle) { |
| 38 | LOG(TRACE) << "Entering Browser::Browser"; |
| 39 | this->is_explicit_close_requested_ = false; |
| 40 | this->is_navigation_started_ = false; |
| 41 | this->browser_ = browser; |
| 42 | this->AttachEvents(); |
| 43 | this->set_is_edge_chromium(is_edge_chromium); |
| 44 | } |
| 45 | |
| 46 | Browser::~Browser(void) { |
| 47 | this->DetachEvents(); |
nothing calls this directly
no test coverage detected