| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_RENDERER_PLUGINS_PLUGIN_PLACEHOLDER_H_ | 5 #ifndef CHROME_RENDERER_PLUGINS_PLUGIN_PLACEHOLDER_H_ |
| 6 #define CHROME_RENDERER_PLUGINS_PLUGIN_PLACEHOLDER_H_ | 6 #define CHROME_RENDERER_PLUGINS_PLUGIN_PLACEHOLDER_H_ |
| 7 | 7 |
| 8 #include "chrome/renderer/plugins/webview_plugin.h" | 8 #include "chrome/renderer/plugins/webview_plugin.h" |
| 9 #include "content/public/renderer/context_menu_client.h" | 9 #include "content/public/renderer/context_menu_client.h" |
| 10 #include "content/public/renderer/render_process_observer.h" | 10 #include "content/public/renderer/render_process_observer.h" |
| 11 #include "content/public/renderer/render_view_observer.h" | 11 #include "content/public/renderer/render_view_observer.h" |
| 12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPluginParams.h" | 12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebPluginParams.h" |
| 13 #include "webkit/glue/cpp_bound_class.h" | |
| 14 #include "webkit/plugins/webplugininfo.h" | 13 #include "webkit/plugins/webplugininfo.h" |
| 14 #include "webkit/renderer/cpp_bound_class.h" |
| 15 | 15 |
| 16 struct ChromeViewHostMsg_GetPluginInfo_Status; | 16 struct ChromeViewHostMsg_GetPluginInfo_Status; |
| 17 | 17 |
| 18 namespace webkit { | 18 namespace webkit { |
| 19 struct WebPluginInfo; | 19 struct WebPluginInfo; |
| 20 } | 20 } |
| 21 | 21 |
| 22 // Placeholders can be used if a plug-in is missing or not available | 22 // Placeholders can be used if a plug-in is missing or not available |
| 23 // (blocked or disabled). | 23 // (blocked or disabled). |
| 24 class PluginPlaceholder : public content::RenderViewObserver, | 24 class PluginPlaceholder : public content::RenderViewObserver, |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 bool has_host_; | 184 bool has_host_; |
| 185 bool finished_loading_; | 185 bool finished_loading_; |
| 186 string16 plugin_name_; | 186 string16 plugin_name_; |
| 187 std::string identifier_; | 187 std::string identifier_; |
| 188 int context_menu_request_id_; // Nonzero when request pending. | 188 int context_menu_request_id_; // Nonzero when request pending. |
| 189 | 189 |
| 190 DISALLOW_COPY_AND_ASSIGN(PluginPlaceholder); | 190 DISALLOW_COPY_AND_ASSIGN(PluginPlaceholder); |
| 191 }; | 191 }; |
| 192 | 192 |
| 193 #endif // CHROME_RENDERER_PLUGINS_PLUGIN_PLACEHOLDER_H_ | 193 #endif // CHROME_RENDERER_PLUGINS_PLUGIN_PLACEHOLDER_H_ |
| OLD | NEW |