Revert "Change mounting storage data and obb flag to on by default"
Revert "Change mounting storage data and obb flag to on by default" Revert "Remove storage app data isolation checking in CTS" Revert submission 14325408-enable_storage_iso_2 Reason for revert: b/187939590 Reverted Changes: I6391b7381:Change mounting storage data and obb flag to on by... Ic2f3d1be2:Remove storage app data isolation checking in CTS Iffa8339b1:Change mounting storage data and obb flag to on by... Bug: 187939590 Bug: 148049767 Change-Id: I8ef3e6fe0210bdf58e1292605ac1cc33a2eaafea
This commit is contained in:
parent
a1837ca9fe
commit
6cc9a1d3dd
1 changed files with 2 additions and 2 deletions
|
@ -50,7 +50,7 @@ EmulatedVolume::EmulatedVolume(const std::string& rawPath, int userId)
|
|||
mLabel = "emulated";
|
||||
mFuseMounted = false;
|
||||
mUseSdcardFs = IsSdcardfsUsed();
|
||||
mAppDataIsolationEnabled = base::GetBoolProperty(kVoldAppDataIsolationEnabled, true);
|
||||
mAppDataIsolationEnabled = base::GetBoolProperty(kVoldAppDataIsolationEnabled, false);
|
||||
}
|
||||
|
||||
EmulatedVolume::EmulatedVolume(const std::string& rawPath, dev_t device, const std::string& fsUuid,
|
||||
|
@ -61,7 +61,7 @@ EmulatedVolume::EmulatedVolume(const std::string& rawPath, dev_t device, const s
|
|||
mLabel = fsUuid;
|
||||
mFuseMounted = false;
|
||||
mUseSdcardFs = IsSdcardfsUsed();
|
||||
mAppDataIsolationEnabled = base::GetBoolProperty(kVoldAppDataIsolationEnabled, true);
|
||||
mAppDataIsolationEnabled = base::GetBoolProperty(kVoldAppDataIsolationEnabled, false);
|
||||
}
|
||||
|
||||
EmulatedVolume::~EmulatedVolume() {}
|
||||
|
|
Loading…
Reference in a new issue