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

Unified Diff: content/browser/plugin_loader_posix.h

Issue 19894003: Move webplugininfo.h to content/public. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/plugin_loader_posix.h
===================================================================
--- content/browser/plugin_loader_posix.h (revision 212806)
+++ content/browser/plugin_loader_posix.h (working copy)
@@ -14,8 +14,8 @@
#include "base/time/time.h"
#include "content/browser/plugin_service_impl.h"
#include "content/public/browser/utility_process_host_client.h"
+#include "content/public/common/webplugininfo.h"
#include "ipc/ipc_sender.h"
-#include "webkit/plugins/webplugininfo.h"
namespace base {
class MessageLoopProxy;
@@ -82,7 +82,7 @@
virtual void LoadPluginsInternal();
// Message handlers.
- void OnPluginLoaded(uint32 index, const webkit::WebPluginInfo& plugin);
+ void OnPluginLoaded(uint32 index, const WebPluginInfo& plugin);
void OnPluginLoadFailed(uint32 index, const base::FilePath& plugin_path);
// Checks if the plugin path is an internal plugin, and, if it is, adds it to
@@ -106,10 +106,10 @@
size_t next_load_index_;
// Internal plugins that have been registered at the time of loading.
- std::vector<webkit::WebPluginInfo> internal_plugins_;
+ std::vector<WebPluginInfo> internal_plugins_;
// A vector of plugins that have been loaded successfully.
- std::vector<webkit::WebPluginInfo> loaded_plugins_;
+ std::vector<WebPluginInfo> loaded_plugins_;
// The callback and message loop on which the callback will be run when the
// plugin loading process has been completed.

Powered by Google App Engine
This is Rietveld 408576698