| Index: chrome/browser/memory_details_win.cc
|
| ===================================================================
|
| --- chrome/browser/memory_details_win.cc (revision 189692)
|
| +++ chrome/browser/memory_details_win.cc (working copy)
|
| @@ -108,9 +108,9 @@
|
| ProcessMemoryInformation info;
|
| info.pid = pid;
|
| if (info.pid == GetCurrentProcessId())
|
| - info.type = content::PROCESS_TYPE_BROWSER;
|
| + info.process_type = content::PROCESS_TYPE_BROWSER;
|
| else
|
| - info.type = content::PROCESS_TYPE_UNKNOWN;
|
| + info.process_type = content::PROCESS_TYPE_UNKNOWN;
|
|
|
| scoped_ptr<base::ProcessMetrics> metrics;
|
| metrics.reset(base::ProcessMetrics::CreateProcessMetrics(process_handle));
|
| @@ -129,7 +129,7 @@
|
| if (child_info[child].pid != info.pid)
|
| continue;
|
| info.titles = child_info[child].titles;
|
| - info.type = child_info[child].type;
|
| + info.process_type = child_info[child].process_type;
|
| break;
|
| }
|
| } else if (GetModuleFileNameEx(process_handle, NULL, name,
|
|
|