Chromium Code Reviews| Index: chrome/renderer/plugins/non_loadable_plugin_placeholder.cc |
| diff --git a/chrome/renderer/plugins/non_loadable_plugin_placeholder.cc b/chrome/renderer/plugins/non_loadable_plugin_placeholder.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..bdc8660ae32b2154f32bae4dc0169e78910ab740 |
| --- /dev/null |
| +++ b/chrome/renderer/plugins/non_loadable_plugin_placeholder.cc |
| @@ -0,0 +1,57 @@ |
| +// Copyright 2015 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. |
| + |
| +#include "chrome/renderer/plugins/non_loadable_plugin_placeholder.h" |
| + |
| +#include "base/files/file_path.h" |
| +#include "base/values.h" |
| +#include "chrome/common/render_messages.h" |
| +#include "chrome/grit/generated_resources.h" |
| +#include "chrome/grit/renderer_resources.h" |
| +#include "components/plugins/renderer/plugin_placeholder.h" |
| +#include "content/app/strings/grit/content_strings.h" |
| +#include "content/public/renderer/render_thread.h" |
| +#include "ui/base/l10n/l10n_util.h" |
| +#include "ui/base/resource/resource_bundle.h" |
| +#include "ui/base/webui/jstemplate_builder.h" |
| + |
| +plugins::PluginPlaceholder* CreateMissingPluginPlaceholder( |
|
Bernhard Bauer
2015/05/16 00:22:21
Would it make sense to name this method CreateNotS
tommycli
2015/05/18 21:12:42
Done.
|
| + content::RenderFrame* render_frame, |
| + blink::WebLocalFrame* frame, |
| + const blink::WebPluginParams& params) { |
| + const base::StringPiece template_html( |
| + ResourceBundle::GetSharedInstance().GetRawDataResource( |
| + IDR_BLOCKED_PLUGIN_HTML)); |
| + |
| + base::DictionaryValue values; |
| + values.SetString("message", |
| + l10n_util::GetStringUTF8(IDS_PLUGIN_NOT_SUPPORTED)); |
| + |
| + std::string html_data = webui::GetI18nTemplateHtml(template_html, &values); |
| + |
| + // PluginPlaceholder will destroy itself when its WebViewPlugin is going away. |
| + return new plugins::PluginPlaceholder(render_frame, frame, params, html_data); |
| +} |
| + |
| +plugins::PluginPlaceholder* CreateErrorPluginPlaceholder( |
| + content::RenderFrame* render_frame, |
| + const base::FilePath& file_path) { |
| + base::DictionaryValue values; |
| + values.SetString("message", |
| + l10n_util::GetStringUTF8(IDS_PLUGIN_INITIALIZATION_ERROR)); |
| + |
| + const base::StringPiece template_html( |
| + ResourceBundle::GetSharedInstance().GetRawDataResource( |
| + IDR_BLOCKED_PLUGIN_HTML)); |
| + std::string html_data = webui::GetI18nTemplateHtml(template_html, &values); |
| + |
| + blink::WebPluginParams params; |
| + // PluginPlaceholder will destroy itself when its WebViewPlugin is going away. |
| + plugins::PluginPlaceholder* plugin = |
| + new plugins::PluginPlaceholder(render_frame, NULL, params, html_data); |
|
Bernhard Bauer
2015/05/16 00:22:21
Use nullptr instead of NULL.
tommycli
2015/05/18 21:12:42
Done.
|
| + |
| + content::RenderThread::Get()->Send(new ChromeViewHostMsg_CouldNotLoadPlugin( |
| + plugin->routing_id(), file_path)); |
| + return plugin; |
| +} |