| Index: chrome/browser/ui/webui/extensions/pack_extension_handler.cc
|
| diff --git a/chrome/browser/ui/webui/extensions/pack_extension_handler.cc b/chrome/browser/ui/webui/extensions/pack_extension_handler.cc
|
| index a69cd4d721ce054294c578d32dbd0af42b627148..fe6190810d04a661e93cae5d87dbdbe0bf574eff 100644
|
| --- a/chrome/browser/ui/webui/extensions/pack_extension_handler.cc
|
| +++ b/chrome/browser/ui/webui/extensions/pack_extension_handler.cc
|
| @@ -119,9 +119,9 @@ void PackExtensionHandler::HandlePackMessage(const ListValue* args) {
|
| int run_flags = static_cast<int>(flags_double);
|
|
|
| base::FilePath root_directory =
|
| - base::FilePath::FromWStringHack(UTF8ToWide(extension_path_));
|
| + base::FilePath::FromWStringHack(base::UTF8ToWide(extension_path_));
|
| base::FilePath key_file =
|
| - base::FilePath::FromWStringHack(UTF8ToWide(private_key_path_));
|
| + base::FilePath::FromWStringHack(base::UTF8ToWide(private_key_path_));
|
|
|
| if (root_directory.empty()) {
|
| if (extension_path_.empty()) {
|
|
|