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

Unified Diff: chrome/browser/extensions/extension_management_api.cc

Issue 7452008: Improve layout for bookmark-apps. Add a treatment for small icons. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Submit-ready Created 9 years, 5 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
Index: chrome/browser/extensions/extension_management_api.cc
diff --git a/chrome/browser/extensions/extension_management_api.cc b/chrome/browser/extensions/extension_management_api.cc
index f0f01c191a1926847025e291fa616a3bb388c12e..e69a626202ea6a724acecd972e4fd4155e48ea31 100644
--- a/chrome/browser/extensions/extension_management_api.cc
+++ b/chrome/browser/extensions/extension_management_api.cc
@@ -87,7 +87,7 @@ static DictionaryValue* CreateExtensionInfo(const Extension& extension,
DictionaryValue* icon_info = new DictionaryValue();
Extension::Icons size = static_cast<Extension::Icons>(icon_iter->first);
GURL url = ExtensionIconSource::GetIconURL(
- &extension, size, ExtensionIconSet::MATCH_EXACTLY, false);
+ &extension, size, ExtensionIconSet::MATCH_EXACTLY, false, NULL);
icon_info->SetInteger(kSizeKey, icon_iter->first);
icon_info->SetString(kUrlKey, url.spec());
icon_list->Append(icon_info);
« no previous file with comments | « chrome/browser/extensions/extension_file_browser_private_api.cc ('k') | chrome/browser/extensions/extensions_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698