chromium/third_party/blink/renderer/modules/installation/installation_service_impl.cc

// Copyright 2016 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/installation/installation_service_impl.h"

#include <memory>
#include <utility>

#include "third_party/blink/renderer/core/dom/events/event.h"
#include "third_party/blink/renderer/core/frame/local_dom_window.h"
#include "third_party/blink/renderer/core/frame/local_frame.h"

namespace blink {

// static
const char InstallationServiceImpl::kSupplementName[] =;

// static
InstallationServiceImpl* InstallationServiceImpl::From(LocalDOMWindow& window) {}

// static
void InstallationServiceImpl::BindReceiver(
    LocalFrame* frame,
    mojo::PendingReceiver<mojom::blink::InstallationService> receiver) {}

InstallationServiceImpl::InstallationServiceImpl(
    base::PassKey<InstallationServiceImpl>,
    LocalFrame& frame)
    :{}

void InstallationServiceImpl::Bind(
    mojo::PendingReceiver<mojom::blink::InstallationService> receiver) {}

void InstallationServiceImpl::Trace(Visitor* visitor) const {}

void InstallationServiceImpl::OnInstall() {}

}  // namespace blink