| Index: extensions/common/extension_resource.cc
|
| diff --git a/extensions/common/extension_resource.cc b/extensions/common/extension_resource.cc
|
| index cdd7fce79e62b85ebc4e4ed7a7c84968c7a97622..e66054401328108949e48719ca63e716325e245f 100644
|
| --- a/extensions/common/extension_resource.cc
|
| +++ b/extensions/common/extension_resource.cc
|
| @@ -88,7 +88,7 @@ base::FilePath ExtensionResource::GetFilePath(
|
| // unfortunately.
|
| // TODO(mad): Fix this once MakeAbsoluteFilePath is unified.
|
| full_path = base::MakeAbsoluteFilePath(full_path);
|
| - if (file_util::PathExists(full_path) &&
|
| + if (base::PathExists(full_path) &&
|
| (symlink_policy == FOLLOW_SYMLINKS_ANYWHERE ||
|
| clean_extension_root.IsParent(full_path))) {
|
| return full_path;
|
|
|