diff options
Diffstat (limited to 'extensions/common/manifest_handlers/shared_module_info.cc')
-rw-r--r-- | extensions/common/manifest_handlers/shared_module_info.cc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/extensions/common/manifest_handlers/shared_module_info.cc b/extensions/common/manifest_handlers/shared_module_info.cc index 0586719..0c01f75 100644 --- a/extensions/common/manifest_handlers/shared_module_info.cc +++ b/extensions/common/manifest_handlers/shared_module_info.cc @@ -113,19 +113,19 @@ bool SharedModuleInfo::Parse(const Extension* extension, return true; if (has_import && has_export) { - *error = ASCIIToUTF16(errors::kInvalidImportAndExport); + *error = base::ASCIIToUTF16(errors::kInvalidImportAndExport); return false; } if (has_export) { const base::DictionaryValue* export_value = NULL; if (!extension->manifest()->GetDictionary(keys::kExport, &export_value)) { - *error = ASCIIToUTF16(errors::kInvalidExport); + *error = base::ASCIIToUTF16(errors::kInvalidExport); return false; } const base::ListValue* resources_list = NULL; if (!export_value->GetList(keys::kResources, &resources_list)) { - *error = ASCIIToUTF16(errors::kInvalidExportResources); + *error = base::ASCIIToUTF16(errors::kInvalidExportResources); return false; } for (size_t i = 0; i < resources_list->GetSize(); ++i) { @@ -149,13 +149,13 @@ bool SharedModuleInfo::Parse(const Extension* extension, if (has_import) { const base::ListValue* import_list = NULL; if (!extension->manifest()->GetList(keys::kImport, &import_list)) { - *error = ASCIIToUTF16(errors::kInvalidImport); + *error = base::ASCIIToUTF16(errors::kInvalidImport); return false; } for (size_t i = 0; i < import_list->GetSize(); ++i) { const base::DictionaryValue* import_entry = NULL; if (!import_list->GetDictionary(i, &import_entry)) { - *error = ASCIIToUTF16(errors::kInvalidImport); + *error = base::ASCIIToUTF16(errors::kInvalidImport); return false; } std::string extension_id; |