| Index: content/ppapi_plugin/ppapi_thread.h
|
| diff --git a/content/ppapi_plugin/ppapi_thread.h b/content/ppapi_plugin/ppapi_thread.h
|
| index d7fd03995e2ab755b73eeecb5900401170e918df..0e21d5611ea7b5cfd8e17b5ebd9dc7d3bb8a6a5b 100644
|
| --- a/content/ppapi_plugin/ppapi_thread.h
|
| +++ b/content/ppapi_plugin/ppapi_thread.h
|
| @@ -28,7 +28,10 @@
|
| #endif
|
|
|
| class CommandLine;
|
| +
|
| +namespace base {
|
| class FilePath;
|
| +}
|
|
|
| namespace IPC {
|
| struct ChannelHandle;
|
| @@ -88,7 +91,7 @@ class PpapiThread : public ChildThread,
|
| virtual void SetActiveURL(const std::string& url) OVERRIDE;
|
|
|
| // Message handlers.
|
| - void OnLoadPlugin(const FilePath& path,
|
| + void OnLoadPlugin(const base::FilePath& path,
|
| const ppapi::PpapiPermissions& permissions);
|
| void OnCreateChannel(base::ProcessId renderer_pid,
|
| int renderer_child_id,
|
| @@ -108,7 +111,7 @@ class PpapiThread : public ChildThread,
|
| IPC::ChannelHandle* handle);
|
|
|
| // Sets up the name of the plugin for logging using the given path.
|
| - void SavePluginName(const FilePath& path);
|
| + void SavePluginName(const base::FilePath& path);
|
|
|
| // True if running in a broker process rather than a normal plugin process.
|
| bool is_broker_;
|
|
|