| 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 1817c762d239b812fe1193dd63223d127a4a5b0d..73db76897b8b0fded90198d8f88abf404a889ff3 100644
|
| --- a/content/browser/ppapi_plugin_process_host.cc
|
| +++ b/content/browser/ppapi_plugin_process_host.cc
|
| @@ -52,7 +52,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
|
| @@ -112,7 +115,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
|
|
|