summaryrefslogtreecommitdiffstats
path: root/base/process_util_mac.mm
diff options
context:
space:
mode:
authorpinkerton@google.com <pinkerton@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-11 16:31:13 +0000
committerpinkerton@google.com <pinkerton@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-11 16:31:13 +0000
commit4d2b744be713c70827adf457bc7c8a08532f38d2 (patch)
tree1c1494f88a77d4e4984576a63740d95c57c9b812 /base/process_util_mac.mm
parent893442d1fe73611d5b270389bc4f079cbfcc143a (diff)
downloadchromium_src-4d2b744be713c70827adf457bc7c8a08532f38d2.zip
chromium_src-4d2b744be713c70827adf457bc7c8a08532f38d2.tar.gz
chromium_src-4d2b744be713c70827adf457bc7c8a08532f38d2.tar.bz2
make sure we match all the tests and files that linux has running. We were never building process_posix, but now the newly added unit tests use it.
Review URL: http://codereview.chromium.org/10221 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5175 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/process_util_mac.mm')
-rw-r--r--base/process_util_mac.mm5
1 files changed, 5 insertions, 0 deletions
diff --git a/base/process_util_mac.mm b/base/process_util_mac.mm
index 942dbab..8b03aa7 100644
--- a/base/process_util_mac.mm
+++ b/base/process_util_mac.mm
@@ -58,4 +58,9 @@ bool WaitForSingleProcess(ProcessHandle handle, int wait_milliseconds) {
return WIFEXITED(status);
}
+bool ProcessMetrics::GetIOCounters(IoCounters* io_counters) {
+ // TODO(pinkerton): can we implement this? On linux it relies on /proc.
+ return false;
+}
+
} // namespace process_util