Merge "SM: Change volume mountUserId for new user" into main
This commit is contained in:
commit
c7bed872c0
2 changed files with 3 additions and 2 deletions
|
@ -26,7 +26,7 @@ oneway interface IVoldListener {
|
|||
|
||||
void onVolumeCreated(@utf8InCpp String volId,
|
||||
int type, @utf8InCpp String diskId, @utf8InCpp String partGuid, int userId);
|
||||
void onVolumeStateChanged(@utf8InCpp String volId, int state);
|
||||
void onVolumeStateChanged(@utf8InCpp String volId, int state, int userId);
|
||||
void onVolumeMetadataChanged(@utf8InCpp String volId,
|
||||
@utf8InCpp String fsType, @utf8InCpp String fsUuid, @utf8InCpp String fsLabel);
|
||||
void onVolumePathChanged(@utf8InCpp String volId,
|
||||
|
|
|
@ -49,7 +49,8 @@ void VolumeBase::setState(State state) {
|
|||
|
||||
auto listener = getListener();
|
||||
if (listener) {
|
||||
listener->onVolumeStateChanged(getId(), static_cast<int32_t>(mState));
|
||||
listener->onVolumeStateChanged(getId(), static_cast<int32_t>(mState),
|
||||
static_cast<int32_t>(mMountUserId));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue