chromium/third_party/blink/renderer/core/speculation_rules/stub_speculation_host.cc

// Copyright 2022 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/core/speculation_rules/stub_speculation_host.h"

#include "third_party/blink/renderer/platform/wtf/functional.h"

namespace blink {

void StubSpeculationHost::BindUnsafe(mojo::ScopedMessagePipeHandle handle) {}

void StubSpeculationHost::Bind(
    mojo::PendingReceiver<SpeculationHost> receiver) {}

void StubSpeculationHost::OnConnectionLost() {}

void StubSpeculationHost::UpdateSpeculationCandidates(Candidates candidates) {}

void StubSpeculationHost::InitiatePreview(const KURL& url) {}

}  // namespace blink