| 100 | } |
| 101 | |
| 102 | bool HtmlDialog::IsValidWindow() { |
| 103 | LOG(TRACE) << "Entering HtmlDialog::IsValidWindow"; |
| 104 | // If the window handle is no longer valid, the window is closing, |
| 105 | // and we must post the quit message. |
| 106 | if (!::IsWindow(this->GetTopLevelWindowHandle())) { |
| 107 | this->is_navigating_ = false; |
| 108 | this->DetachEvents(); |
| 109 | this->PostQuitMessage(); |
| 110 | return false; |
| 111 | } |
| 112 | return true; |
| 113 | } |
| 114 | |
| 115 | bool HtmlDialog::SetFullScreen(bool is_full_screen) { |
| 116 | return false; |
no test coverage detected