Index: chrome/browser/tab_contents/tab_contents.cc |
diff --git a/chrome/browser/tab_contents/tab_contents.cc b/chrome/browser/tab_contents/tab_contents.cc |
index 25afd700814473c10cbe436ecf92863fbc0e1248..e3d1870c790c41692e78cca23afb9890f0930fd5 100644 |
--- a/chrome/browser/tab_contents/tab_contents.cc |
+++ b/chrome/browser/tab_contents/tab_contents.cc |
@@ -1948,9 +1948,11 @@ void TabContents::OnCrashedPlugin(const FilePath& plugin_path) { |
#else |
NOTIMPLEMENTED() << " convert plugin path to plugin name"; |
#endif |
+ SkBitmap* crash_icon = ResourceBundle::GetSharedInstance().GetBitmapNamed( |
+ IDR_INFOBAR_PLUGIN_CRASHED); |
AddInfoBar(new SimpleAlertInfoBarDelegate( |
this, l10n_util::GetStringF(IDS_PLUGIN_CRASHED_PROMPT, plugin_name), |
- NULL, true)); |
+ crash_icon, true)); |
} |
void TabContents::OnCrashedWorker() { |