chromium/storage/browser/blob/blob_storage_constants.cc

// Copyright 2016 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_constants.h"

#include <ostream>

#include "base/check.h"
#include "base/command_line.h"
#include "base/strings/string_number_conversions.h"

namespace storage {
namespace {
// Specifies the minimum file size.
constexpr const char kBlobFileTransportMinFileSizeSwitch[] =;
// Specifies the maximum file size.
constexpr const char kBlobFileTransportMaxFileSizeSwitch[] =;
// Specifies a custom maximum size of the shared memory segments used to
// transport blob.
const char kBlobSharedMemoryTransportMaxSizeSwitch[] =;
}  // namespace

static_assert;
static_assert;
static_assert;

BlobStorageLimits::BlobStorageLimits() {}
BlobStorageLimits::~BlobStorageLimits() {}

BlobStorageLimits::BlobStorageLimits(const BlobStorageLimits&) = default;
BlobStorageLimits& BlobStorageLimits::operator=(const BlobStorageLimits&) =
    default;

bool BlobStorageLimits::IsValid() const {}

bool BlobStatusIsError(BlobStatus status) {}

bool BlobStatusIsPending(BlobStatus status) {}

bool BlobStatusIsBadIPC(BlobStatus status) {}

}  // namespace storage