| 505 | } |
| 506 | |
| 507 | STDMETHODIMP DuiLib::CWebBrowserUI::QueryService( REFGUID guidService, REFIID riid, void** ppvObject ) |
| 508 | { |
| 509 | HRESULT hr = E_NOINTERFACE; |
| 510 | *ppvObject = NULL; |
| 511 | |
| 512 | if ( guidService == SID_SDownloadManager && riid == IID_IDownloadManager) |
| 513 | { |
| 514 | *ppvObject = this; |
| 515 | return S_OK; |
| 516 | } |
| 517 | |
| 518 | return hr; |
| 519 | } |
| 520 | |
| 521 | HRESULT DuiLib::CWebBrowserUI::RegisterEventHandler( BOOL inAdvise ) |
| 522 | { |
nothing calls this directly
no outgoing calls
no test coverage detected