Chromium Code Reviews| Index: webkit/plugins/npapi/plugin_list_posix.cc |
| diff --git a/webkit/plugins/npapi/plugin_list_posix.cc b/webkit/plugins/npapi/plugin_list_posix.cc |
| index 175bc4ddc730a0893132f5829b0784d1f88dea32..43d50561cd5bf42ae3d7df64a37a85ed12b0588c 100644 |
| --- a/webkit/plugins/npapi/plugin_list_posix.cc |
| +++ b/webkit/plugins/npapi/plugin_list_posix.cc |
| @@ -216,10 +216,9 @@ void PluginList::GetPluginsInDir( |
| // Java doesn't like being loaded through a symlink, since it uses |
| // its path to find dependent data files. |
| - // file_util::AbsolutePath calls through to realpath(), which resolves |
| + // MakeAbsoluteFilePath calls through to realpath(), which resolves |
| // symlinks. |
| - base::FilePath orig_path = path; |
| - file_util::AbsolutePath(&path); |
| + base::FilePath orig_path = base::MakeAbsoluteFilePath(path); |
|
Steve Block
2013/05/07 06:46:28
Shouldn't this be 'path = ...', and orig_path shou
|
| LOG_IF(ERROR, PluginList::DebugPluginLoading()) |
| << "Resolved " << orig_path.value() << " -> " << path.value(); |