| 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 9381cff629e76e1f524e792374542cdb1eaa2a86..427daddc228fbb4800c756801fd7c186e5e3adf0 100644
|
| --- a/chrome/browser/ui/webui/extensions/pack_extension_handler.cc
|
| +++ b/chrome/browser/ui/webui/extensions/pack_extension_handler.cc
|
| @@ -69,8 +69,8 @@ void PackExtensionHandler::OnPackSuccess(const FilePath& crx_file,
|
| const FilePath& pem_file) {
|
| ListValue arguments;
|
| arguments.Append(Value::CreateStringValue(
|
| - UTF16ToUTF8(PackExtensionJob::StandardSuccessMessage(crx_file,
|
| - pem_file))));
|
| + UTF16ToUTF8(extensions::PackExtensionJob::StandardSuccessMessage(
|
| + crx_file, pem_file))));
|
| web_ui()->CallJavascriptFunction(
|
| "PackExtensionOverlay.showSuccessMessage", arguments);
|
| }
|
| @@ -141,7 +141,8 @@ void PackExtensionHandler::HandlePackMessage(const ListValue* args) {
|
| return;
|
| }
|
|
|
| - pack_job_ = new PackExtensionJob(this, root_directory, key_file, run_flags);
|
| + pack_job_ = new extensions::PackExtensionJob(
|
| + this, root_directory, key_file, run_flags);
|
| pack_job_->Start();
|
| }
|
|
|
|
|