#include "components/pdf/renderer/internal_plugin_renderer_helpers.h"
#include <memory>
#include <utility>
#include "base/check.h"
#include "base/command_line.h"
#include "components/pdf/renderer/pdf_internal_plugin_delegate.h"
#include "components/pdf/renderer/pdf_view_web_plugin_client.h"
#include "content/public/common/content_switches.h"
#include "content/public/renderer/render_frame.h"
#include "mojo/public/cpp/bindings/associated_remote.h"
#include "pdf/mojom/pdf.mojom.h"
#include "pdf/pdf_view_web_plugin.h"
#include "third_party/blink/public/common/associated_interfaces/associated_interface_provider.h"
#include "third_party/blink/public/platform/web_security_origin.h"
#include "third_party/blink/public/web/web_frame.h"
#include "third_party/blink/public/web/web_local_frame.h"
#include "third_party/blink/public/web/web_plugin.h"
#include "third_party/blink/public/web/web_plugin_params.h"
#include "url/gurl.h"
#include "url/origin.h"
namespace pdf {
bool IsPdfRenderer() { … }
blink::WebPlugin* CreateInternalPlugin(
blink::WebPluginParams params,
content::RenderFrame* render_frame,
std::unique_ptr<PdfInternalPluginDelegate> delegate) { … }
}