| Index: content/browser/plugin_process_host.h
|
| ===================================================================
|
| --- content/browser/plugin_process_host.h (revision 96613)
|
| +++ content/browser/plugin_process_host.h (working copy)
|
| @@ -16,7 +16,7 @@
|
| #include "base/basictypes.h"
|
| #include "base/memory/ref_counted.h"
|
| #include "content/browser/browser_child_process_host.h"
|
| -#include "webkit/plugins/npapi/webplugininfo.h"
|
| +#include "webkit/plugins/webplugininfo.h"
|
| #include "ui/gfx/native_widget_types.h"
|
|
|
| namespace gfx {
|
| @@ -45,7 +45,7 @@
|
| // the channel.
|
| virtual int ID() = 0;
|
| virtual bool OffTheRecord() = 0;
|
| - virtual void SetPluginInfo(const webkit::npapi::WebPluginInfo& info) = 0;
|
| + virtual void SetPluginInfo(const webkit::WebPluginInfo& info) = 0;
|
| // The client should delete itself when one of these methods is called.
|
| virtual void OnChannelOpened(const IPC::ChannelHandle& handle) = 0;
|
| virtual void OnError() = 0;
|
| @@ -59,7 +59,7 @@
|
|
|
| // Initialize the new plugin process, returning true on success. This must
|
| // be called before the object can be used.
|
| - bool Init(const webkit::npapi::WebPluginInfo& info, const std::string& locale);
|
| + bool Init(const webkit::WebPluginInfo& info, const std::string& locale);
|
|
|
| // Force the plugin process to shutdown (cleanly).
|
| virtual void ForceShutdown();
|
| @@ -85,7 +85,7 @@
|
| void OnAppActivation();
|
| #endif
|
|
|
| - const webkit::npapi::WebPluginInfo& info() const { return info_; }
|
| + const webkit::WebPluginInfo& info() const { return info_; }
|
|
|
| #if defined(OS_WIN)
|
| // Tracks plugin parent windows created on the browser UI thread.
|
| @@ -131,7 +131,7 @@
|
| std::queue<Client*> sent_requests_;
|
|
|
| // Information about the plugin.
|
| - webkit::npapi::WebPluginInfo info_;
|
| + webkit::WebPluginInfo info_;
|
|
|
| #if defined(OS_WIN)
|
| // Tracks plugin parent windows created on the UI thread.
|
|
|