| Index: chrome/browser/process_info_snapshot_mac.cc
|
| diff --git a/chrome/browser/process_info_snapshot_mac.cc b/chrome/browser/process_info_snapshot_mac.cc
|
| index fba77f88a9f71244d224e7ca1cc56722043f9488..f2a001989a9db516fc855ac7b33f1d3ad27c9468 100644
|
| --- a/chrome/browser/process_info_snapshot_mac.cc
|
| +++ b/chrome/browser/process_info_snapshot_mac.cc
|
| @@ -130,7 +130,7 @@ static bool GetProcessMemoryInfoUsingPS(
|
| const std::vector<base::ProcessId>& pid_list,
|
| std::map<int,ProcessInfoSnapshot::ProcInfoEntry>& proc_info_entries) {
|
| const base::FilePath kProgram("/bin/ps");
|
| - CommandLine command_line(kProgram);
|
| + base::CommandLine command_line(kProgram);
|
|
|
| // Get resident set size, virtual memory size.
|
| command_line.AppendArg("-o");
|
| @@ -193,7 +193,7 @@ static bool GetProcessMemoryInfoUsingPS(
|
| static bool GetProcessMemoryInfoUsingTop(
|
| std::map<int,ProcessInfoSnapshot::ProcInfoEntry>& proc_info_entries) {
|
| const base::FilePath kProgram("/usr/bin/top");
|
| - CommandLine command_line(kProgram);
|
| + base::CommandLine command_line(kProgram);
|
|
|
| // -stats tells top to print just the given fields as ordered.
|
| command_line.AppendArg("-stats");
|
|
|