Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(329)

Side by Side Diff: chrome/renderer/plugins/non_loadable_plugin_placeholder.h

Issue 1126073003: Plugin Placeholders: Refactor for platforms that don't support plugins (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: The version that was reverted. Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_RENDERER_PLUGINS_NON_LOADABLE_PLUGIN_PLACEHOLDER_H_
6 #define CHROME_RENDERER_PLUGINS_NON_LOADABLE_PLUGIN_PLACEHOLDER_H_
7
8 #include "base/macros.h"
9
10 namespace base {
11 class FilePath;
12 }
13
14 namespace blink {
15 class WebLocalFrame;
16 struct WebPluginParams;
17 }
18
19 namespace content {
20 class RenderFrame;
21 }
22
23 namespace plugins {
24 class PluginPlaceholder;
25 }
26
27 class NonLoadablePluginPlaceholder {
28 public:
29 // Creates a non-loadable plugin placeholder for platforms without plugins.
30 static plugins::PluginPlaceholder* CreateNotSupportedPlugin(
31 content::RenderFrame* render_frame,
32 blink::WebLocalFrame* frame,
33 const blink::WebPluginParams& params);
34
35 static plugins::PluginPlaceholder* CreateErrorPlugin(
36 content::RenderFrame* render_frame,
37 const base::FilePath& file_path);
38
39 private:
40 DISALLOW_IMPLICIT_CONSTRUCTORS(NonLoadablePluginPlaceholder);
41 };
42
43 #endif // CHROME_RENDERER_PLUGINS_NON_LOADABLE_PLUGIN_PLACEHOLDER_H_
OLDNEW
« no previous file with comments | « chrome/renderer/plugins/chrome_plugin_placeholder.cc ('k') | chrome/renderer/plugins/non_loadable_plugin_placeholder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698