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

Unified Diff: util/test/multiprocess_exec.h

Issue 880763002: Reorganize Multiprocess and implement for Windows (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: fixes 2 Created 5 years, 11 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 | « util/test/multiprocess.cc ('k') | util/test/multiprocess_exec.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: util/test/multiprocess_exec.h
diff --git a/util/test/multiprocess_exec.h b/util/test/multiprocess_exec.h
index 5b5f7a29acf49bd7265dfc99cd7478188844c1d3..4f60f8145132ec4cc161d4db06bb4a2e78fbb6e0 100644
--- a/util/test/multiprocess_exec.h
+++ b/util/test/multiprocess_exec.h
@@ -19,6 +19,7 @@
#include <vector>
#include "base/basictypes.h"
+#include "build/build_config.h"
#include "util/test/multiprocess.h"
namespace crashpad {
@@ -62,7 +63,11 @@ class MultiprocessExec : public Multiprocess {
std::string command_;
std::vector<std::string> arguments_;
+#if defined(OS_POSIX)
std::vector<const char*> argv_;
+#elif defined(OS_WIN)
+ std::wstring command_line_;
+#endif // OS_POSIX
DISALLOW_COPY_AND_ASSIGN(MultiprocessExec);
};
« no previous file with comments | « util/test/multiprocess.cc ('k') | util/test/multiprocess_exec.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698