| Index: chrome/browser/memory_details_win.cc
|
| ===================================================================
|
| --- chrome/browser/memory_details_win.cc (revision 69950)
|
| +++ chrome/browser/memory_details_win.cc (working copy)
|
| @@ -6,6 +6,7 @@
|
| #include <psapi.h>
|
|
|
| #include "app/l10n_util.h"
|
| +#include "base/file_path.h"
|
| #include "base/file_version_info.h"
|
| #include "base/string_util.h"
|
| #include "base/utf_string_conversions.h"
|
| @@ -135,7 +136,7 @@
|
| } else if (GetModuleFileNameEx(handle, NULL, name, MAX_PATH - 1)) {
|
| std::wstring str_name(name);
|
| scoped_ptr<FileVersionInfo> version_info(
|
| - FileVersionInfo::CreateFileVersionInfo(str_name));
|
| + FileVersionInfo::CreateFileVersionInfo(FilePath(str_name)));
|
| if (version_info != NULL) {
|
| info.version = version_info->product_version();
|
| info.product_name = version_info->product_name();
|
|
|