summaryrefslogtreecommitdiffstats
path: root/chrome/common/extensions/extension_unpacker.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/common/extensions/extension_unpacker.cc')
-rw-r--r--chrome/common/extensions/extension_unpacker.cc7
1 files changed, 6 insertions, 1 deletions
diff --git a/chrome/common/extensions/extension_unpacker.cc b/chrome/common/extensions/extension_unpacker.cc
index 25919cf..fee4b54 100644
--- a/chrome/common/extensions/extension_unpacker.cc
+++ b/chrome/common/extensions/extension_unpacker.cc
@@ -177,7 +177,12 @@ bool ExtensionUnpacker::Run() {
// EXTENSION.
std::string error;
scoped_refptr<Extension> extension(Extension::Create(
- temp_install_dir_, Extension::INVALID, *parsed_manifest_, false, &error));
+ temp_install_dir_,
+ Extension::INVALID,
+ *parsed_manifest_,
+ false, // Do not require a key
+ false, // Do not enable strict error checks
+ &error));
if (!extension.get()) {
SetError(error);
return false;