// 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. #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 final : public plugins::PluginPlaceholderBase, public gin::Wrappable<PDFPluginPlaceholder> { … }; #endif // CHROME_RENDERER_PLUGINS_PDF_PLUGIN_PLACEHOLDER_H_