chromium/third_party/blink/renderer/core/frame/web_local_frame_client.cc

// Copyright 2017 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/public/web/web_local_frame_client.h"

#include "mojo/public/cpp/bindings/pending_remote.h"
#include "third_party/blink/public/common/associated_interfaces/associated_interface_provider.h"
#include "third_party/blink/public/web/web_link_preview_triggerer.h"
#include "third_party/blink/renderer/platform/loader/fetch/url_loader/url_loader.h"

namespace blink {

AssociatedInterfaceProvider*
WebLocalFrameClient::GetRemoteNavigationAssociatedInterfaces() {}

std::unique_ptr<URLLoader> WebLocalFrameClient::CreateURLLoaderForTesting() {}

std::unique_ptr<WebLinkPreviewTriggerer>
WebLocalFrameClient::CreateLinkPreviewTriggerer() {}

void WebLocalFrameClient::SetLinkPreviewTriggererForTesting(
    std::unique_ptr<WebLinkPreviewTriggerer> trigger) {}

}  // namespace blink