#include "storage/browser/blob/blob_url_registry.h"
#include "base/functional/callback.h"
#include "base/run_loop.h"
#include "base/test/scoped_feature_list.h"
#include "base/test/task_environment.h"
#include "base/unguessable_token.h"
#include "net/base/features.h"
#include "storage/browser/test/fake_blob.h"
#include "testing/gtest/include/gtest/gtest.h"
#include "url/gurl.h"
namespace storage {
namespace {
std::string UuidFromBlob(mojo::PendingRemote<blink::mojom::Blob> pending_blob) { … }
enum class PartitionedBlobUrlTestCase { … };
class BlobUrlRegistryTestP
: public testing::Test,
public testing::WithParamInterface<PartitionedBlobUrlTestCase> { … };
TEST_P(BlobUrlRegistryTestP, URLRegistration) { … }
INSTANTIATE_TEST_SUITE_P(…);
}
}