Changeset 94648 in vbox
- Timestamp:
- Apr 20, 2022 10:20:19 AM (3 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/UpdateAgentImpl.h
r94647 r94648 68 68 /** @name Wrapped IUpdateAgent attributes and methods 69 69 * @{ */ 70 virtual HRESULT check(ComPtr<IProgress> &aProgress) = 0;70 virtual HRESULT check(ComPtr<IProgress> &aProgress); 71 71 virtual HRESULT download(ComPtr<IProgress> &aProgress); 72 72 virtual HRESULT install(ComPtr<IProgress> &aProgress); … … 152 152 /** @} */ 153 153 154 virtual DECLCALLBACK(HRESULT) i_updateTask(UpdateAgentTask *pTask);155 156 154 private: 157 155 /** @name Implemented (pure) virtual methods from UpdateAgent. 158 156 * @{ */ 159 virtual HRESULT check(ComPtr<IProgress> &aProgress); 157 virtual HRESULT check(ComPtr<IProgress> &aProgress) RT_OVERRIDE; 158 159 virtual DECLCALLBACK(HRESULT) i_updateTask(UpdateAgentTask *pTask) RT_OVERRIDE; 160 160 /** @} */ 161 161 162 HRESULT i_updateAgentTask(UpdateAgentTask *pTask);163 162 HRESULT i_checkForUpdate(void); 164 163 HRESULT i_checkForUpdateInner(RTHTTP hHttp, com::Utf8Str const &strUrl, com::Utf8Str const &strUserAgent); -
trunk/src/VBox/Main/src-server/UpdateAgentImpl.cpp
r94647 r94648 133 133 if (autoUninitSpan.uninitDone()) 134 134 return; 135 } 136 137 HRESULT UpdateAgent::check(ComPtr<IProgress> &aProgress) 138 { 139 RT_NOREF(aProgress); 140 141 return VBOX_E_NOT_SUPPORTED; 135 142 } 136 143
Note:
See TracChangeset
for help on using the changeset viewer.