1 // Copyright 2012 The Chromium Authors 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #include "base/process/launch.h" 6 7 namespace base { 8 RaiseProcessToHighPriority()9void RaiseProcessToHighPriority() { 10 // Impossible on iOS. Do nothing. 11 } 12 GetAppOutput(const CommandLine & cl,std::string * output)13bool GetAppOutput(const CommandLine& cl, std::string* output) { 14 return false; 15 } 16 GetAppOutputAndError(const CommandLine & cl,std::string * output)17bool GetAppOutputAndError(const CommandLine& cl, std::string* output) { 18 return false; 19 } 20 LaunchProcess(const CommandLine & cmdline,const LaunchOptions & options)21Process LaunchProcess(const CommandLine& cmdline, 22 const LaunchOptions& options) { 23 return Process(); 24 } 25 26 } // namespace base 27