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

Unified Diff: chrome/browser/ui/startup/session_crashed_prompt.cc

Issue 15067008: [InfoBar] Add InfoBarDelegate::GetIconID() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Renaming back to GetIcon() Created 7 years, 7 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/ui/startup/session_crashed_prompt.cc
diff --git a/chrome/browser/ui/startup/session_crashed_prompt.cc b/chrome/browser/ui/startup/session_crashed_prompt.cc
index dc7d7bba45792b68d66b4ae9e04e090d6efc060b..8235439c0e6e03ea83c0a4cbafaaaa6325812fab 100644
--- a/chrome/browser/ui/startup/session_crashed_prompt.cc
+++ b/chrome/browser/ui/startup/session_crashed_prompt.cc
@@ -67,9 +67,8 @@ SessionCrashedInfoBarDelegate::~SessionCrashedInfoBarDelegate() {
}
}
-gfx::Image* SessionCrashedInfoBarDelegate::GetIcon() const {
- return &ResourceBundle::GetSharedInstance().GetNativeImageNamed(
- IDR_INFOBAR_RESTORE_SESSION);
+int SessionCrashedInfoBarDelegate::GetIconID() const {
+ return IDR_INFOBAR_RESTORE_SESSION;
}
string16 SessionCrashedInfoBarDelegate::GetMessageText() const {

Powered by Google App Engine
This is Rietveld 408576698