Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(554)

Side by Side Diff: base/process_util_mac.mm

Issue 200094: Some scaffolding for the task manager. (Closed)
Patch Set: DAMN YOU GIT Created 11 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW
« no previous file with comments | « no previous file | chrome/app/nibs/MainMenu.xib » ('j') | chrome/browser/cocoa/task_manager_mac_unittest.mm » ('J')

Powered by Google App Engine
This is Rietveld 408576698