chromium/storage/browser/quota/quota_override_handle.cc

// Copyright 2020 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/quota/quota_override_handle.h"

#include "base/memory/scoped_refptr.h"
#include "base/sequence_checker.h"
#include "base/task/sequenced_task_runner.h"
#include "storage/browser/quota/quota_manager_proxy.h"
#include "third_party/blink/public/common/storage_key/storage_key.h"

namespace storage {

QuotaOverrideHandle::QuotaOverrideHandle(
    scoped_refptr<QuotaManagerProxy> quota_manager_proxy)
    :{}

QuotaOverrideHandle::~QuotaOverrideHandle() {}

void QuotaOverrideHandle::OverrideQuotaForStorageKey(
    const blink::StorageKey& storage_key,
    std::optional<int64_t> quota_size,
    base::OnceClosure callback) {}

void QuotaOverrideHandle::DidGetOverrideHandleId(int id) {}

}  // namespace storage