chromium/third_party/blink/renderer/modules/cache_storage/cache_storage_error.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 "third_party/blink/renderer/modules/cache_storage/cache_storage_error.h"

#include "third_party/blink/public/mojom/cache_storage/cache_storage.mojom-blink.h"
#include "third_party/blink/renderer/bindings/core/v8/script_promise_resolver.h"
#include "third_party/blink/renderer/core/dom/dom_exception.h"
#include "third_party/blink/renderer/modules/cache_storage/cache.h"
#include "third_party/blink/renderer/platform/bindings/v8_throw_exception.h"
#include "third_party/blink/renderer/platform/heap/garbage_collected.h"

namespace blink {

namespace {

String GetDefaultMessage(mojom::CacheStorageError web_error) {}

}  // namespace

void RejectCacheStorageWithError(ScriptPromiseResolverBase* resolver,
                                 mojom::blink::CacheStorageError web_error,
                                 const String& message) {}

}  // namespace blink