OLD | NEW |
1 // Copyright (c) 2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2008 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 | 5 |
6 #include "base/process_util.h" | 6 #include "base/process_util.h" |
7 | 7 |
8 #import <Cocoa/Cocoa.h> | 8 #import <Cocoa/Cocoa.h> |
9 #include <crt_externs.h> | 9 #include <crt_externs.h> |
10 #include <mach/mach_init.h> | 10 #include <mach/mach_init.h> |
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 size_t ProcessMetrics::GetPeakPagefileUsage() const { | 192 size_t ProcessMetrics::GetPeakPagefileUsage() const { |
193 return 0; | 193 return 0; |
194 } | 194 } |
195 size_t ProcessMetrics::GetWorkingSetSize() const { | 195 size_t ProcessMetrics::GetWorkingSetSize() const { |
196 return 0; | 196 return 0; |
197 } | 197 } |
198 size_t ProcessMetrics::GetPeakWorkingSetSize() const { | 198 size_t ProcessMetrics::GetPeakWorkingSetSize() const { |
199 return 0; | 199 return 0; |
200 } | 200 } |
201 | 201 |
| 202 size_t ProcessMetrics::GetPrivateBytes() const { |
| 203 return 0; |
| 204 } |
| 205 |
| 206 void ProcessMetrics::GetCommittedKBytes(CommittedKBytes* usage) const { |
| 207 } |
| 208 |
| 209 bool ProcessMetrics::GetWorkingSetKBytes(WorkingSetKBytes* ws_usage) const { |
| 210 return false; |
| 211 } |
| 212 |
202 // ------------------------------------------------------------------------ | 213 // ------------------------------------------------------------------------ |
203 | 214 |
204 } // namespace base | 215 } // namespace base |
OLD | NEW |