diff options
author | rsesek@chromium.org <rsesek@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-17 18:12:40 +0000 |
---|---|---|
committer | rsesek@chromium.org <rsesek@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-07-17 18:12:40 +0000 |
commit | 300c386b2aa297d9fe887f4c63f840d9b60db3ca (patch) | |
tree | 03f16ab42b2560f15603dbf3818bcddb99df0c5a /base/process/launch_ios.cc | |
parent | 1f523dc9b34f3f6e2ca73d52e1c060368a268c2a (diff) | |
download | chromium_src-300c386b2aa297d9fe887f4c63f840d9b60db3ca.zip chromium_src-300c386b2aa297d9fe887f4c63f840d9b60db3ca.tar.gz chromium_src-300c386b2aa297d9fe887f4c63f840d9b60db3ca.tar.bz2 |
Finish splitting base/process_util.h by moving the remaining routines to base/process/launch.h
This leaves a forwarding header at base/process_util.h so that include paths
can be cleaned up.
BUG=242290
R=brettw@chromium.org
Review URL: https://codereview.chromium.org/19240006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@212091 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/process/launch_ios.cc')
-rw-r--r-- | base/process/launch_ios.cc | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/base/process/launch_ios.cc b/base/process/launch_ios.cc new file mode 100644 index 0000000..3c700f8 --- /dev/null +++ b/base/process/launch_ios.cc @@ -0,0 +1,13 @@ +// Copyright (c) 2012 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#include "base/process/launch.h" + +namespace base { + +void RaiseProcessToHighPriority() { + // Impossible on iOS. Do nothing. +} + +} // namespace base |