| Index: chrome/common/child_process_host.h
|
| ===================================================================
|
| --- chrome/common/child_process_host.h (revision 52283)
|
| +++ chrome/common/child_process_host.h (working copy)
|
| @@ -5,22 +5,24 @@
|
| #ifndef CHROME_COMMON_CHILD_PROCESS_HOST_H_
|
| #define CHROME_COMMON_CHILD_PROCESS_HOST_H_
|
|
|
| -#if defined(OS_WIN)
|
| -#include <windows.h>
|
| -#endif // defined(OS_WIN)
|
| -
|
| #include <list>
|
| #include <string>
|
|
|
| // Must be included early (e.g. before chrome/common/plugin_messages.h)
|
| #include "ipc/ipc_logging.h"
|
|
|
| +// Putting this before ipc_logging.h does not work (OS_WIN isn't defined)
|
| +#if defined(OS_WIN)
|
| +#include <windows.h>
|
| +#endif // defined(OS_WIN)
|
| +
|
| #include "base/basictypes.h"
|
| #include "base/file_path.h"
|
| #include "base/scoped_ptr.h"
|
| #include "chrome/common/notification_type.h"
|
| #include "ipc/ipc_channel.h"
|
|
|
| +
|
| class CommandLine;
|
|
|
| // Provides common functionality for hosting a child process and processing IPC
|
|
|