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

Unified Diff: content/worker/worker_uitest.cc

Issue 7006006: Replace OS_LINUX ifdefs with OS_POSIX & !OS_MACOSX, TOOLKIT_USES_GTK, or (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 9 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 | « content/renderer/renderer_webkitclient_impl.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/worker/worker_uitest.cc
diff --git a/content/worker/worker_uitest.cc b/content/worker/worker_uitest.cc
index 6099a05709abc7961c679f76eed39bb3f4f4bd22..369107279ab4aa535fcbfe8a445ecd6cb1ba1037 100644
--- a/content/worker/worker_uitest.cc
+++ b/content/worker/worker_uitest.cc
@@ -88,8 +88,8 @@ class WorkerTest : public UILayoutTest {
// The 1 is for the browser process.
int number_of_processes = 1 + workers +
(ProxyLauncher::in_process_renderer() ? 0 : tabs);
-#if defined(OS_LINUX)
- // On Linux, we also have a zygote process and a sandbox host process.
+#if defined(OS_POSIX) && !defined(OS_MACOSX)
+ // On Unix, we also have a zygote process and a sandbox host process.
number_of_processes += 2;
#endif
« no previous file with comments | « content/renderer/renderer_webkitclient_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698