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

Unified Diff: base/test/multiprocess_test.cc

Issue 10408081: Provide android specific implementation for MultiProcessTest::SpawnChildImpl (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Exit the child process with the return value from test function. Created 8 years, 7 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 | « base/base.gyp ('k') | base/test/multiprocess_test_android.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/test/multiprocess_test.cc
diff --git a/base/test/multiprocess_test.cc b/base/test/multiprocess_test.cc
index b0773aed5bebd5cb573f51c58adec4d2bbb935be..27f997077b92fa4da39dde3ad97cb071661e7f2a 100644
--- a/base/test/multiprocess_test.cc
+++ b/base/test/multiprocess_test.cc
@@ -36,6 +36,7 @@ CommandLine MultiProcessTest::MakeCmdLine(const std::string& procname,
return cl;
}
+#if !defined(OS_ANDROID)
Yaron 2012/05/23 16:42:01 I forget... isn't this style frowned upon (removin
ProcessHandle MultiProcessTest::SpawnChildImpl(
const std::string& procname,
const FileHandleMappingVector& fds_to_map,
@@ -50,5 +51,6 @@ ProcessHandle MultiProcessTest::SpawnChildImpl(
base::LaunchProcess(MakeCmdLine(procname, debug_on_start), options, &handle);
return handle;
}
+#endif // !defined(OS_ANDROID)
} // namespace base
« no previous file with comments | « base/base.gyp ('k') | base/test/multiprocess_test_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698