Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6955)

Unified Diff: chrome/common/child_process_host.h

Issue 2962014: Fixed compile error. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698