chromium/storage/browser/blob/blob_data_snapshot.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 <stddef.h>
#include <stdint.h>

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

namespace storage {

BlobDataSnapshot::BlobDataSnapshot(
    const std::string& uuid,
    const std::string& content_type,
    const std::string& content_disposition,
    const std::vector<scoped_refptr<BlobDataItem>>& items)
    :{}

BlobDataSnapshot::BlobDataSnapshot(const std::string& uuid,
                                   const std::string& content_type,
                                   const std::string& content_disposition)
    :{}

BlobDataSnapshot::BlobDataSnapshot(const BlobDataSnapshot& other)
    :{}

BlobDataSnapshot::~BlobDataSnapshot() = default;

size_t BlobDataSnapshot::GetMemoryUsage() const {}

void PrintTo(const BlobDataSnapshot& x, std::ostream* os) {}

}  // namespace storage