| 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..77bd30581c26ec14ba4c17de07accccd1b6ea0eb 100644
|
| --- a/chrome/browser/ui/startup/session_crashed_prompt.cc
|
| +++ b/chrome/browser/ui/startup/session_crashed_prompt.cc
|
| @@ -21,7 +21,6 @@
|
| #include "grit/generated_resources.h"
|
| #include "grit/theme_resources.h"
|
| #include "ui/base/l10n/l10n_util.h"
|
| -#include "ui/base/resource/resource_bundle.h"
|
|
|
|
|
| // static
|
| @@ -67,9 +66,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 {
|
|
|