Changeset 73167 in vbox for trunk/src/VBox/Main
- Timestamp:
- Jul 17, 2018 7:41:21 AM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 123769
- Location:
- trunk/src/VBox/Main
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/VirtualBox.xidl
r73154 r73167 24910 24910 <desc> 24911 24911 Creates a cloud operation object for the passed profile 24912 24913 24914 24912 if profile name is NULL or empty string creates operation for the active profile. 24913 if profile name is NULL or empty string and there is not the active profile 24914 returns "VERR_INVALID_PARAMETER" 24915 24915 </desc> 24916 24916 <param name="profileName" type="wstring" dir="in"> … … 24926 24926 <param name="opId" type="uuid" mod="string" dir="return"> 24927 24927 <desc> 24928 24929 24928 UUID of the operation. 24929 It's used later when user chooses and runs this cloud operation 24930 24930 </desc> 24931 24931 </param> … … 24938 24938 <param name="opId" type="uuid" mod="string" dir="in"> 24939 24939 <desc> 24940 24940 UUID of the operation. 24941 24941 </desc> 24942 24942 </param> … … 24954 24954 <param name="opId" type="uuid" mod="string" dir="in"> 24955 24955 <desc> 24956 24956 UUID of the operation. 24957 24957 </desc> 24958 24958 </param> … … 25026 25026 <param name="opId" type="uuid" mod="string" dir="in"> 25027 25027 <desc> 25028 25028 UUID of the operation. 25029 25029 </desc> 25030 25030 </param> -
trunk/src/VBox/Main/src-server/CloudClientImpl.cpp
r73164 r73167 155 155 hrc = arc; 156 156 LogRel(("Get cought an exception %d\n", hrc)); 157 } 157 } 158 158 catch (std::bad_alloc) 159 159 { … … 173 173 LogRel(("CloudClient::getOperationParameters: %d, %s\n", aCloudOperation, aJsonString.c_str())); 174 174 HRESULT hrc = VERR_NOT_IMPLEMENTED; 175 /* 176 177 createCloudAPI 178 */ 175 179 176 return hrc; 180 177 } -
trunk/src/VBox/Main/src-server/CloudUserProfileListImpl.cpp
r73164 r73167 42 42 } 43 43 44 SimpleConfigFile::~SimpleConfigFile() 44 SimpleConfigFile::~SimpleConfigFile() 45 45 { 46 46 LogRel(("SimpleConfigFile::~SimpleConfigFile()\n")); … … 367 367 if (SUCCEEDED(hrc)) 368 368 { 369 ComObjPtr<CloudClientOCI> ptrCloudClientOCI; 370 hrc = ptrCloudClientOCI.createObject(); 369 371 AutoReadLock wlock(this COMMA_LOCKVAL_SRC_POS); 370 hrc = ptrCloudClient ->initCloudClient(this, mParent, providerId, aProfileName);372 hrc = ptrCloudClientOCI->initCloudClient(this, mParent, providerId, aProfileName); 371 373 if (SUCCEEDED(hrc)) 372 374 { 375 ptrCloudClient = ptrCloudClientOCI; 373 376 hrc = ptrCloudClient.queryInterfaceTo(aCloudClient.asOutParam()); 374 377 } … … 430 433 } 431 434 432 HRESULT OCIUserProfileList::updateProfile(const com::Utf8Str &aProfileName, 435 HRESULT OCIUserProfileList::updateProfile(const com::Utf8Str &aProfileName, 433 436 const std::vector<com::Utf8Str> &aNames, 434 437 const std::vector<com::Utf8Str> &aValues) -
trunk/src/VBox/Main/src-server/CloudUserProfileManagerImpl.cpp
r73164 r73167 104 104 } 105 105 106 HRESULT CloudUserProfileManager::getProfilesByProvider(CloudProviderId_T aProviderType, 106 HRESULT CloudUserProfileManager::getProfilesByProvider(CloudProviderId_T aProviderType, 107 107 ComPtr<ICloudUserProfileList> &aProfiles) 108 108 {
Note:
See TracChangeset
for help on using the changeset viewer.