summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/modules/launch/launch_params.cc
blob: 02d232563c93584ee39e29f1d37eedbad763139c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// 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/native_file_system_handle.h"
#include "third_party/blink/renderer/platform/heap/visitor.h"

namespace blink {

LaunchParams::LaunchParams(HeapVector<Member<NativeFileSystemHandle>> files)
    : files_(files) {}

LaunchParams::~LaunchParams() = default;

void LaunchParams::Trace(Visitor* visitor) const {
  visitor->Trace(files_);
  ScriptWrappable::Trace(visitor);
}

}  // namespace blink