#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 {
const char InstallationServiceImpl::kSupplementName[] = …;
InstallationServiceImpl* InstallationServiceImpl::From(LocalDOMWindow& window) { … }
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() { … }
}