| Index: chrome/common/extensions/extension_file_util.cc
|
| diff --git a/chrome/common/extensions/extension_file_util.cc b/chrome/common/extensions/extension_file_util.cc
|
| index 33df260e12db3f3321bc3eac4b691241a9a8c9bf..f5cf9f48920a8880e0ef8387b6523a1052e5e5e3 100644
|
| --- a/chrome/common/extensions/extension_file_util.cc
|
| +++ b/chrome/common/extensions/extension_file_util.cc
|
| @@ -552,7 +552,7 @@ FilePath ExtensionURLToRelativeFilePath(const GURL& url) {
|
|
|
| // Drop the leading slashes and convert %-encoded UTF8 to regular UTF8.
|
| std::string file_path = net::UnescapeURLComponent(url_path,
|
| - UnescapeRule::SPACES | UnescapeRule::URL_SPECIAL_CHARS);
|
| + net::UnescapeRule::SPACES | net::UnescapeRule::URL_SPECIAL_CHARS);
|
| size_t skip = file_path.find_first_not_of("/\\");
|
| if (skip != file_path.npos)
|
| file_path = file_path.substr(skip);
|
|
|