1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37
   38
   39
   40
   41

content / browser / renderer_host / page_factory.cc [blame]

// 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_ = nullptr;

// static
std::unique_ptr<PageImpl> PageFactory::Create(RenderFrameHostImpl& rfh,
                                              PageDelegate& delegate) {
  if (factory_) {
    return factory_->CreatePage(rfh, delegate);
  }

  return std::make_unique<PageImpl>(rfh, delegate);
}

// static
void PageFactory::RegisterFactory(PageFactory* factory) {
  DCHECK(!factory_) << "Can't register two factories at once.";
  factory_ = factory;
}

// static
void PageFactory::UnregisterFactory() {
  DCHECK(factory_) << "No factory to unregister.";
  factory_ = nullptr;
}

}  // namespace content