chromium/content/browser/renderer_host/page_factory.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 "content/browser/renderer_host/page_factory.h"

#include <memory>

#include "content/browser/renderer_host/render_view_host_impl.h"
#include "content/browser/renderer_host/render_widget_host_factory.h"
#include "content/browser/site_instance_group.h"
#include "mojo/public/cpp/bindings/pending_remote.h"

namespace content {

// static
PageFactory* PageFactory::factory_ =;

// static
std::unique_ptr<PageImpl> PageFactory::Create(RenderFrameHostImpl& rfh,
                                              PageDelegate& delegate) {}

// static
void PageFactory::RegisterFactory(PageFactory* factory) {}

// static
void PageFactory::UnregisterFactory() {}

}  // namespace content