| 200 | } |
| 201 | |
| 202 | void DuiLib::CWebBrowserUI::NavigateComplete2( IDispatch *pDisp,VARIANT *&url ) |
| 203 | { |
| 204 | CComPtr<IDispatch> spDoc; |
| 205 | m_pWebBrowser2->get_Document(&spDoc); |
| 206 | |
| 207 | if (spDoc) |
| 208 | { |
| 209 | CComQIPtr<ICustomDoc, &IID_ICustomDoc> spCustomDoc(spDoc); |
| 210 | if (spCustomDoc) |
| 211 | spCustomDoc->SetUIHandler(this); |
| 212 | } |
| 213 | |
| 214 | if (m_pWebBrowserEventHandler) |
| 215 | { |
| 216 | m_pWebBrowserEventHandler->NavigateComplete2(pDisp,url); |
| 217 | } |
| 218 | } |
| 219 | |
| 220 | void DuiLib::CWebBrowserUI::ProgressChange( LONG nProgress, LONG nProgressMax ) |
| 221 | { |
nothing calls this directly
no outgoing calls
no test coverage detected