diff options
Diffstat (limited to 'chrome/browser/ui/webui/fileicon_source.cc')
-rw-r--r-- | chrome/browser/ui/webui/fileicon_source.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/ui/webui/fileicon_source.cc b/chrome/browser/ui/webui/fileicon_source.cc index b0d4609..81b8050 100644 --- a/chrome/browser/ui/webui/fileicon_source.cc +++ b/chrome/browser/ui/webui/fileicon_source.cc @@ -52,7 +52,7 @@ void GetFilePathAndQuery(const std::string& url, // The path we receive has the wrong slashes and escaping for what we need; // this only appears to matter for getting icons from .exe files. std::replace(path.begin(), path.end(), '/', '\\'); - *file_path = base::FilePath(UTF8ToWide(path)); + *file_path = base::FilePath(base::UTF8ToWide(path)); #elif defined(OS_POSIX) // The correct encoding on Linux may not actually be UTF8. *file_path = base::FilePath(path); |