chromium/third_party/blink/renderer/modules/file_system_access/file_system_access_error.cc

// Copyright 2019 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/file_system_access/file_system_access_error.h"

#include "base/files/file.h"
#include "third_party/blink/public/mojom/file_system_access/file_system_access_error.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/core/fileapi/file_error.h"

namespace blink::file_system_access_error {

void ResolveOrReject(ScriptPromiseResolver<IDLUndefined>* resolver,
                     const mojom::blink::FileSystemAccessError& error) {}

void Reject(ScriptPromiseResolverBase* resolver,
            const mojom::blink::FileSystemAccessError& error) {}

}  // namespace blink::file_system_access_error