Index: chrome/browser/ui/views/extensions/extension_installed_bubble.cc |
=================================================================== |
--- chrome/browser/ui/views/extensions/extension_installed_bubble.cc (revision 113568) |
+++ chrome/browser/ui/views/extensions/extension_installed_bubble.cc (working copy) |
@@ -26,7 +26,6 @@ |
#include "chrome/common/extensions/extension_action.h" |
#include "content/public/browser/notification_details.h" |
#include "content/public/browser/notification_source.h" |
-#include "grit/chromium_strings.h" |
#include "grit/generated_resources.h" |
#include "grit/theme_resources_standard.h" |
#include "ui/base/l10n/l10n_util.h" |
@@ -113,10 +112,9 @@ |
string16 extension_name = UTF8ToUTF16(extension->name()); |
base::i18n::AdjustStringForLocaleDirection(&extension_name); |
- heading_ = new views::Label(l10n_util::GetStringFUTF16( |
- IDS_EXTENSION_INSTALLED_HEADING, |
- extension_name, |
- l10n_util::GetStringUTF16(IDS_SHORT_PRODUCT_NAME))); |
+ heading_ = new views::Label( |
+ l10n_util::GetStringFUTF16(IDS_EXTENSION_INSTALLED_HEADING, |
+ extension_name)); |
heading_->SetFont(rb.GetFont(ResourceBundle::MediumFont)); |
heading_->SetMultiLine(true); |
heading_->SetHorizontalAlignment(views::Label::ALIGN_LEFT); |