process_util_ios.cpp (627B)
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ 2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */ 3 // Copyright (c) 2008 The Chromium Authors. All rights reserved. 4 // Use of this source code is governed by a BSD-style license that can be 5 // found in the LICENSE file. 6 7 #include "base/process_util.h" 8 9 namespace base { 10 11 Result<Ok, LaunchError> LaunchApp(const std::vector<std::string>& argv, 12 LaunchOptions&& options, 13 ProcessHandle* process_handle) { 14 return Err(LaunchError("LaunchApp is not supported on iOS")); 15 } 16 17 } // namespace base