blob: 733f82fb332eff3d874e6ca66bea861583d8c7f0 [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// 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/launch/launch_params.h"
#include "third_party/blink/renderer/modules/file_system_access/file_system_handle.h"
#include "third_party/blink/renderer/platform/heap/visitor.h"
namespace blink {
LaunchParams::LaunchParams(HeapVector<Member<FileSystemHandle>> files)
: files_(std::move(files)) {}
LaunchParams::~LaunchParams() = default;
void LaunchParams::Trace(Visitor* visitor) const {
visitor->Trace(files_);
ScriptWrappable::Trace(visitor);
}
} // namespace blink