| Index: chrome/browser/memory_details_linux.cc | 
| =================================================================== | 
| --- chrome/browser/memory_details_linux.cc	(revision 69950) | 
| +++ chrome/browser/memory_details_linux.cc	(working copy) | 
| @@ -240,8 +240,8 @@ | 
| GetAllChildren(processes, getpid(), zygote, ¤t_browser_processes); | 
| ProcessData current_browser; | 
| GetProcessDataMemoryInformation(current_browser_processes, ¤t_browser); | 
| -  current_browser.name = chrome::kBrowserAppName; | 
| -  current_browser.process_name = L"chrome"; | 
| +  current_browser.name = WideToUTF16(chrome::kBrowserAppName); | 
| +  current_browser.process_name = ASCIIToUTF16("chrome"); | 
| process_data_.push_back(current_browser); | 
|  | 
| // For each browser process, collect a list of its children and get the | 
| @@ -258,7 +258,7 @@ | 
| if (j->pid == *i) { | 
| BrowserType type = GetBrowserType(j->name); | 
| if (type != MAX_BROWSERS) | 
| -          browser.name = ASCIIToWide(kBrowserPrettyNames[type]); | 
| +          browser.name = ASCIIToUTF16(kBrowserPrettyNames[type]); | 
| break; | 
| } | 
| } | 
|  |