Changeset 94647 in vbox for trunk/src/VBox
- Timestamp:
- Apr 20, 2022 10:12:17 AM (3 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/include/UpdateAgentImpl.h
r94646 r94647 68 68 /** @name Wrapped IUpdateAgent attributes and methods 69 69 * @{ */ 70 virtual HRESULT check(ComPtr<IProgress> &aProgress) ;70 virtual HRESULT check(ComPtr<IProgress> &aProgress) = 0; 71 71 virtual HRESULT download(ComPtr<IProgress> &aProgress); 72 72 virtual HRESULT install(ComPtr<IProgress> &aProgress); 73 virtual HRESULT rollback(void) RT_OVERRIDE;73 virtual HRESULT rollback(void); 74 74 75 75 virtual HRESULT getName(com::Utf8Str &aName); … … 157 157 /** @name Implemented (pure) virtual methods from UpdateAgent. 158 158 * @{ */ 159 HRESULT check(ComPtr<IProgress> &aProgress);159 virtual HRESULT check(ComPtr<IProgress> &aProgress); 160 160 /** @} */ 161 161 162 #ifdef VBOX_WITH_UPDATE_AGENT163 162 HRESULT i_updateAgentTask(UpdateAgentTask *pTask); 164 163 HRESULT i_checkForUpdate(void); 165 164 HRESULT i_checkForUpdateInner(RTHTTP hHttp, com::Utf8Str const &strUrl, com::Utf8Str const &strUserAgent); 166 #endif167 165 }; 168 166 -
trunk/src/VBox/Main/src-server/UpdateAgentImpl.cpp
r94643 r94647 151 151 HRESULT UpdateAgent::rollback(void) 152 152 { 153 return S_OK; /* No-op by default. */153 return VBOX_E_NOT_SUPPORTED; 154 154 } 155 155
Note:
See TracChangeset
for help on using the changeset viewer.