Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(609)

Unified Diff: chrome/browser/ui/webui/extensions/pack_extension_handler.cc

Issue 10824204: Move small c/b/extensions classes into extensions namespace no.2 (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Latest master for cq + nitfix Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/ui/webui/extensions/pack_extension_handler.h ('k') | chrome/chrome_browser_extensions.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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();
}
« no previous file with comments | « chrome/browser/ui/webui/extensions/pack_extension_handler.h ('k') | chrome/chrome_browser_extensions.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698