From 7c013e45c96e52f0fc7cb6d80721f12a86e59d07 Mon Sep 17 00:00:00 2001 From: TyanNN Date: Mon, 22 Aug 2016 13:20:46 +0300 Subject: [PATCH] Do not define Pipeline::setup_common on Windows --- components/constellation/pipeline.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/components/constellation/pipeline.rs b/components/constellation/pipeline.rs index efd5c377875..4725955c3ab 100644 --- a/components/constellation/pipeline.rs +++ b/components/constellation/pipeline.rs @@ -538,6 +538,7 @@ impl UnprivilegedPipelineContent { process::exit(1); } + #[cfg(not(windows))] fn setup_common(&self, command: &mut C, token: String) { C::arg(command, "--content-process"); C::arg(command, token);