| Index: chrome/browser/plugins/plugin_infobar_delegates.cc
|
| diff --git a/chrome/browser/plugins/plugin_infobar_delegates.cc b/chrome/browser/plugins/plugin_infobar_delegates.cc
|
| index d83bc7b4e9cf59eeae2e30d3509188b2aeaf4613..e59cb41a98e656a779af1dc38561daa7e5b6b54f 100644
|
| --- a/chrome/browser/plugins/plugin_infobar_delegates.cc
|
| +++ b/chrome/browser/plugins/plugin_infobar_delegates.cc
|
| @@ -30,6 +30,7 @@
|
| #include "content/public/browser/user_metrics.h"
|
| #include "content/public/browser/web_contents.h"
|
| #include "ui/base/l10n/l10n_util.h"
|
| +#include "ui/gfx/vector_icons_public.h"
|
|
|
| #if defined(ENABLE_PLUGIN_INSTALLATION)
|
| #include "chrome/browser/plugins/plugin_installer.h"
|
| @@ -108,8 +109,8 @@ void OutdatedPluginInfoBarDelegate::InfoBarDismissed() {
|
| content::RecordAction(UserMetricsAction("OutdatedPluginInfobar.Dismissed"));
|
| }
|
|
|
| -int OutdatedPluginInfoBarDelegate::GetIconId() const {
|
| - return IDR_INFOBAR_PLUGIN_INSTALL;
|
| +gfx::VectorIconId OutdatedPluginInfoBarDelegate::GetVectorIconId() const {
|
| + return gfx::VectorIconId::EXTENSION;
|
| }
|
|
|
| base::string16 OutdatedPluginInfoBarDelegate::GetMessageText() const {
|
|
|