#include "third_party/blink/renderer/modules/launch/web_launch_service_impl.h"
#include "third_party/blink/public/mojom/file_system_access/file_system_access_directory_handle.mojom-blink.h"
#include "third_party/blink/renderer/core/frame/local_dom_window.h"
#include "third_party/blink/renderer/core/frame/local_frame.h"
#include "third_party/blink/renderer/core/frame/web_feature.h"
#include "third_party/blink/renderer/modules/launch/dom_window_launch_queue.h"
#include "third_party/blink/renderer/platform/instrumentation/use_counter.h"
namespace blink {
const char WebLaunchServiceImpl::kSupplementName[] = …;
WebLaunchServiceImpl* WebLaunchServiceImpl::From(LocalDOMWindow& window) { … }
void WebLaunchServiceImpl::BindReceiver(
LocalFrame* frame,
mojo::PendingAssociatedReceiver<mojom::blink::WebLaunchService> receiver) { … }
WebLaunchServiceImpl::WebLaunchServiceImpl(base::PassKey<WebLaunchServiceImpl>,
LocalDOMWindow& window)
: … { … }
WebLaunchServiceImpl::~WebLaunchServiceImpl() = default;
void WebLaunchServiceImpl::Bind(
mojo::PendingAssociatedReceiver<mojom::blink::WebLaunchService> receiver) { … }
void WebLaunchServiceImpl::Trace(Visitor* visitor) const { … }
void WebLaunchServiceImpl::SetLaunchFiles(
WTF::Vector<mojom::blink::FileSystemAccessEntryPtr> entries) { … }
void WebLaunchServiceImpl::EnqueueLaunchParams(const KURL& launch_url) { … }
}