| Index: chrome/renderer/plugins/chrome_plugin_placeholder.h
|
| diff --git a/chrome/renderer/plugins/chrome_plugin_placeholder.h b/chrome/renderer/plugins/chrome_plugin_placeholder.h
|
| index e174f6cb8e9e623317531c1b7eb7dd50dae67163..7332547b5cc4d17fd5d1fb157adb571189c3c45e 100644
|
| --- a/chrome/renderer/plugins/chrome_plugin_placeholder.h
|
| +++ b/chrome/renderer/plugins/chrome_plugin_placeholder.h
|
| @@ -45,9 +45,7 @@ class ChromePluginPlaceholder final
|
|
|
| void SetStatus(ChromeViewHostMsg_GetPluginInfo_Status status);
|
|
|
| -#if defined(ENABLE_PLUGIN_INSTALLATION)
|
| int32_t CreateRoutingId();
|
| -#endif
|
|
|
| private:
|
| ChromePluginPlaceholder(content::RenderFrame* render_frame,
|
| @@ -92,16 +90,19 @@ class ChromePluginPlaceholder final
|
| void OnErrorDownloadingPlugin(const std::string& error);
|
| void OnCancelledDownloadingPlugin();
|
| #endif
|
| + void OnPluginComponentUpdateDownloading();
|
| + void OnPluginComponentUpdateSuccess();
|
| + void OnPluginComponentUpdateFailure();
|
|
|
| ChromeViewHostMsg_GetPluginInfo_Status status_;
|
|
|
| base::string16 title_;
|
|
|
| -#if defined(ENABLE_PLUGIN_INSTALLATION)
|
| // |routing_id()| is the routing ID of our associated RenderView, but we have
|
| // a separate routing ID for messages specific to this placeholder.
|
| int32_t placeholder_routing_id_ = MSG_ROUTING_NONE;
|
|
|
| +#if defined(ENABLE_PLUGIN_INSTALLATION)
|
| bool has_host_ = false;
|
| #endif
|
|
|
|
|