13 lines
420 B
C++
13 lines
420 B
C++
// Copyright 2022 Google LLC. All Rights Reserved. This file and proprietary
|
|
// source code may only be used and distributed under the Widevine License
|
|
// Agreement.
|
|
|
|
#include "create_test_file_system.h"
|
|
|
|
#include "test_host.h"
|
|
|
|
std::unique_ptr<wvutil::FileSystem> CreateTestFileSystem() {
|
|
return std::make_unique<wvutil::FileSystem>("",
|
|
&g_host->per_origin_storage());
|
|
}
|