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

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

Issue 256022: Loads local resources from current locale subtree if available, if not it fal... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 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
« no previous file with comments | « no previous file | chrome/browser/extensions/execute_code_in_tab_function.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/crx_installer.cc
===================================================================
--- chrome/browser/extensions/crx_installer.cc (revision 28272)
+++ chrome/browser/extensions/crx_installer.cc (working copy)
@@ -124,8 +124,9 @@
}
if (client_.get()) {
- DecodeInstallIcon(extension_->GetIconPath(Extension::EXTENSION_ICON_LARGE),
- &install_icon_);
+ FilePath icon_path =
+ extension_->GetIconPath(Extension::EXTENSION_ICON_LARGE).GetFilePath();
+ DecodeInstallIcon(icon_path, &install_icon_);
}
ui_loop_->PostTask(FROM_HERE, NewRunnableMethod(this,
&CrxInstaller::ConfirmInstall));
« no previous file with comments | « no previous file | chrome/browser/extensions/execute_code_in_tab_function.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698