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

Unified Diff: extensions/common/manifest_handler_helpers.cc

Issue 1554583002: Revert of Change extension icon load errors to warnings (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix merge issues Created 5 years 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 | « extensions/common/manifest_handler_helpers.h ('k') | extensions/common/manifest_handlers/icons_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/common/manifest_handler_helpers.cc
diff --git a/extensions/common/manifest_handler_helpers.cc b/extensions/common/manifest_handler_helpers.cc
index 36af224d69e9d21f417728620dbf8a2a5989c34e..bfc9e3378c4ca9f1f46eb83c30b734e0215dbf9e 100644
--- a/extensions/common/manifest_handler_helpers.cc
+++ b/extensions/common/manifest_handler_helpers.cc
@@ -13,10 +13,7 @@
#include "extensions/common/error_utils.h"
#include "extensions/common/extension.h"
#include "extensions/common/extension_icon_set.h"
-#include "extensions/common/file_util.h"
#include "extensions/common/manifest_constants.h"
-#include "grit/extensions_strings.h"
-#include "ui/base/l10n/l10n_util.h"
namespace extensions {
@@ -35,8 +32,7 @@ bool NormalizeAndValidatePath(std::string* path) {
return true;
}
-bool LoadIconsFromDictionary(Extension* extension,
- const base::DictionaryValue* icons_value,
+bool LoadIconsFromDictionary(const base::DictionaryValue* icons_value,
ExtensionIconSet* icons,
base::string16* error) {
DCHECK(icons);
@@ -53,23 +49,7 @@ bool LoadIconsFromDictionary(Extension* extension,
return false;
}
- // For backwards compatibility, only warn (don't error out) if an icon is
- // missing. Component extensions can skip this check as their icons are not
- // located on disk. Unpacked extensions skip this check and fail later
- // during validation if the file isn't present. See crbug.com/570249
- // TODO(estade|devlin): remove this workaround and let install fail in the
- // validate step a few releases after M49. See http://crbug.com/571193
- if (Manifest::IsComponentLocation(extension->location()) ||
- Manifest::IsUnpackedLocation(extension->location()) ||
- file_util::ValidateFilePath(
- extension->GetResource(icon_path).GetFilePath())) {
- icons->Add(size, icon_path);
- } else {
- extension->AddInstallWarning(InstallWarning(
- l10n_util::GetStringFUTF8(IDS_EXTENSION_LOAD_ICON_FAILED,
- base::UTF8ToUTF16(icon_path)),
- std::string()));
- }
+ icons->Add(size, icon_path);
}
return true;
}
« no previous file with comments | « extensions/common/manifest_handler_helpers.h ('k') | extensions/common/manifest_handlers/icons_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698