| Index: extensions/common/manifest_handlers/icons_handler.cc
|
| diff --git a/extensions/common/manifest_handlers/icons_handler.cc b/extensions/common/manifest_handlers/icons_handler.cc
|
| index 2825ae917b7dcf672fd4551ffa9d0b5ed79a9467..6fb5ce537fc736bdc74a35f2ab4606058937443a 100644
|
| --- a/extensions/common/manifest_handlers/icons_handler.cc
|
| +++ b/extensions/common/manifest_handlers/icons_handler.cc
|
| @@ -28,6 +28,7 @@ static base::LazyInstance<ExtensionIconSet>::DestructorAtExit g_empty_icon_set =
|
|
|
| // static
|
| const ExtensionIconSet& IconsInfo::GetIcons(const Extension* extension) {
|
| + DCHECK(extension);
|
| IconsInfo* info = static_cast<IconsInfo*>(
|
| extension->GetManifestData(keys::kIcons));
|
| return info ? info->icons : g_empty_icon_set.Get();
|
|
|