| Index: webkit/browser/fileapi/dragged_file_util.cc
|
| diff --git a/webkit/browser/fileapi/dragged_file_util.cc b/webkit/browser/fileapi/dragged_file_util.cc
|
| index b4536a70f9adc373c7f8a624b5512a1a5faabf75..3e81242532ff556e04db129cfb468971caa9b9ed 100644
|
| --- a/webkit/browser/fileapi/dragged_file_util.cc
|
| +++ b/webkit/browser/fileapi/dragged_file_util.cc
|
| @@ -81,7 +81,7 @@ PlatformFileError DraggedFileUtil::GetFileInfo(
|
| }
|
| base::PlatformFileError error =
|
| NativeFileUtil::GetFileInfo(url.path(), file_info);
|
| - if (file_util::IsLink(url.path()) && !base::FilePath().IsParent(url.path())) {
|
| + if (base::IsLink(url.path()) && !base::FilePath().IsParent(url.path())) {
|
| // Don't follow symlinks unless it's the one that are selected by the user.
|
| return base::PLATFORM_FILE_ERROR_NOT_FOUND;
|
| }
|
|
|