Source release 18.5.0

This commit is contained in:
Matt Feddersen
2024-03-28 19:15:22 -07:00
parent b2c35151ad
commit 28ec8548c6
109 changed files with 3623 additions and 1012 deletions

View File

@@ -28,6 +28,10 @@ class TestHost : public widevine::Cdm::IClock,
~Storage() override {}
void Reset();
// Save and load the storage from a string buffer so it can be on disk.
bool LoadFromString(const std::string& data);
bool SaveToString(std::string* data) const;
// Reset the file system to contain the specified files.
void ResetFiles(const StorageMap& files) { files_ = files; };
const StorageMap& files() const { return files_; }