| Index: content/browser/ppapi_plugin_process_host.cc
|
| diff --git a/content/browser/ppapi_plugin_process_host.cc b/content/browser/ppapi_plugin_process_host.cc
|
| index 10719d0d393df416e7d9a7ab16edfd717cc40ef2..130a8103048806396b2594dd6ffa3b22443ac4de 100644
|
| --- a/content/browser/ppapi_plugin_process_host.cc
|
| +++ b/content/browser/ppapi_plugin_process_host.cc
|
| @@ -51,7 +51,10 @@ class PpapiPluginSandboxedProcessLauncherDelegate
|
| PpapiPluginSandboxedProcessLauncherDelegate(bool is_broker,
|
| const PepperPluginInfo& info,
|
| ChildProcessHost* host)
|
| - : info_(info),
|
| + :
|
| +#if defined(OS_WIN)
|
| + info_(info),
|
| +#endif // OS_WIN
|
| #if defined(OS_POSIX)
|
| ipc_fd_(host->TakeClientFileDescriptor()),
|
| #endif // OS_POSIX
|
| @@ -111,7 +114,9 @@ class PpapiPluginSandboxedProcessLauncherDelegate
|
| }
|
|
|
| private:
|
| +#if defined(OS_WIN)
|
| const PepperPluginInfo& info_;
|
| +#endif // OS_WIN
|
| #if defined(OS_POSIX)
|
| base::ScopedFD ipc_fd_;
|
| #endif // OS_POSIX
|
|
|