| 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 "content/public/renderer/context_menu_client.h" | 8 #include "content/public/renderer/context_menu_client.h" |
| 9 #include "content/public/renderer/render_process_observer.h" | 9 #include "content/public/renderer/render_process_observer.h" |
| 10 #include "content/public/renderer/render_view_observer.h" | 10 #include "content/public/renderer/render_view_observer.h" |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 // Opens chrome://plugins in a new tab. | 128 // Opens chrome://plugins in a new tab. |
| 129 // Takes no arguments, and returns nothing. | 129 // Takes no arguments, and returns nothing. |
| 130 void OpenAboutPluginsCallback(const webkit_glue::CppArgumentList& args, | 130 void OpenAboutPluginsCallback(const webkit_glue::CppArgumentList& args, |
| 131 webkit_glue::CppVariant* result); | 131 webkit_glue::CppVariant* result); |
| 132 | 132 |
| 133 void DidFinishLoadingCallback(const webkit_glue::CppArgumentList& args, | 133 void DidFinishLoadingCallback(const webkit_glue::CppArgumentList& args, |
| 134 webkit_glue::CppVariant* result); | 134 webkit_glue::CppVariant* result); |
| 135 | 135 |
| 136 void OnLoadBlockedPlugins(const std::string& identifier); | 136 void OnLoadBlockedPlugins(const std::string& identifier); |
| 137 void OnSetIsPrerendering(bool is_prerendering); | 137 void OnSetIsPrerendering(bool is_prerendering); |
| 138 #if defined(ENABLE_PLUGIN_INSTALLATION) |
| 138 void OnDidNotFindMissingPlugin(); | 139 void OnDidNotFindMissingPlugin(); |
| 139 #if defined(ENABLE_PLUGIN_INSTALLATION) | |
| 140 void OnFoundMissingPlugin(const string16& plugin_name); | 140 void OnFoundMissingPlugin(const string16& plugin_name); |
| 141 void OnStartedDownloadingPlugin(); | 141 void OnStartedDownloadingPlugin(); |
| 142 void OnFinishedDownloadingPlugin(); | 142 void OnFinishedDownloadingPlugin(); |
| 143 void OnErrorDownloadingPlugin(const std::string& error); | 143 void OnErrorDownloadingPlugin(const std::string& error); |
| 144 void OnCancelledDownloadingPlugin(); | 144 void OnCancelledDownloadingPlugin(); |
| 145 #endif | 145 #endif |
| 146 | 146 |
| 147 #if defined(ENABLE_MOBILE_YOUTUBE_PLUGIN) | 147 #if defined(ENABLE_MOBILE_YOUTUBE_PLUGIN) |
| 148 // Check whether the url is valid. | 148 // Check whether the url is valid. |
| 149 static bool IsValidYouTubeVideo(const std::string& path); | 149 static bool IsValidYouTubeVideo(const std::string& path); |
| (...skipping 34 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 |