| Index: chrome/renderer/plugins/pdf_plugin_placeholder.h
|
| diff --git a/chrome/renderer/plugins/pdf_plugin_placeholder.h b/chrome/renderer/plugins/pdf_plugin_placeholder.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..e3975ced1ad65f4060c39cb6a3a648dd40b471b6
|
| --- /dev/null
|
| +++ b/chrome/renderer/plugins/pdf_plugin_placeholder.h
|
| @@ -0,0 +1,35 @@
|
| +// Copyright 2017 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef CHROME_RENDERER_PLUGINS_PDF_PLUGIN_PLACEHOLDER_H_
|
| +#define CHROME_RENDERER_PLUGINS_PDF_PLUGIN_PLACEHOLDER_H_
|
| +
|
| +#include "components/plugins/renderer/plugin_placeholder.h"
|
| +
|
| +// Placeholder that allows users to click to download a PDF for when
|
| +// plugins are disabled and the PDF fails to load.
|
| +// TODO(amberwon): Flesh out the class more to download an embedded PDF when the
|
| +// PDF plugin is disabled or unavailable.
|
| +class PDFPluginPlaceholder : public plugins::PluginPlaceholderBase,
|
| + public gin::Wrappable<PDFPluginPlaceholder> {
|
| + public:
|
| + static gin::WrapperInfo kWrapperInfo;
|
| +
|
| + // Returned placeholder is owned by the associated plugin, which can be
|
| + // retrieved with PluginPlaceholderBase::plugin().
|
| + static PDFPluginPlaceholder* CreatePDFPlaceholder(
|
| + content::RenderFrame* render_frame,
|
| + const blink::WebPluginParams& params);
|
| +
|
| + private:
|
| + PDFPluginPlaceholder(content::RenderFrame* render_frame,
|
| + const blink::WebPluginParams& params,
|
| + const std::string& html_data);
|
| + ~PDFPluginPlaceholder() final;
|
| +
|
| + // WebViewPlugin::Delegate methods:
|
| + v8::Local<v8::Value> GetV8Handle(v8::Isolate* isolate) final;
|
| +};
|
| +
|
| +#endif // CHROME_RENDERER_PLUGINS_PDF_PLUGIN_PLACEHOLDER_H_
|
|
|