chromium/storage/browser/blob/blob_storage_registry.cc

// Copyright 2015 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "storage/browser/blob/blob_storage_registry.h"

#include <stddef.h>

#include <memory>

#include "base/check.h"
#include "base/containers/contains.h"
#include "base/functional/bind.h"
#include "base/location.h"
#include "storage/browser/blob/blob_entry.h"

namespace storage {

BlobStorageRegistry::BlobStorageRegistry() = default;

BlobStorageRegistry::~BlobStorageRegistry() {}

BlobEntry* BlobStorageRegistry::CreateEntry(
    const std::string& uuid,
    const std::string& content_type,
    const std::string& content_disposition) {}

bool BlobStorageRegistry::DeleteEntry(const std::string& uuid) {}

bool BlobStorageRegistry::HasEntry(const std::string& uuid) const {}

BlobEntry* BlobStorageRegistry::GetEntry(const std::string& uuid) {}

const BlobEntry* BlobStorageRegistry::GetEntry(const std::string& uuid) const {}

}  // namespace storage