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

Unified Diff: chrome/browser/ui/cocoa/extensions/extension_installed_bubble_bridge.mm

Issue 8872009: Revert 113568 - extensions: remove install/uninstall terminology (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years 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/cocoa/extensions/extension_installed_bubble_bridge.mm
===================================================================
--- chrome/browser/ui/cocoa/extensions/extension_installed_bubble_bridge.mm (revision 113568)
+++ chrome/browser/ui/cocoa/extensions/extension_installed_bubble_bridge.mm (working copy)
@@ -17,7 +17,6 @@
#include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h"
#include "chrome/common/extensions/extension.h"
#include "chrome/common/extensions/extension_action.h"
-#include "grit/chromium_strings.h"
#include "grit/generated_resources.h"
#include "ui/base/l10n/l10n_util.h"
#include "ui/gfx/image/image.h"
@@ -38,10 +37,9 @@
string16 extension_name = UTF8ToUTF16(new_extension->name());
base::i18n::AdjustStringForLocaleDirection(&extension_name);
- string16 msg = l10n_util::GetStringFUTF16(
- IDS_EXTENSION_INSTALLED_HEADING,
- extension_name,
- l10n_util::GetStringUTF16(IDS_SHORT_PRODUCT_NAME)) +
+ string16 msg =
+ l10n_util::GetStringFUTF16(IDS_EXTENSION_INSTALLED_HEADING,
+ extension_name) +
UTF8ToUTF16(" ") +
l10n_util::GetStringUTF16(IDS_EXTENSION_INSTALLED_MANAGE_INFO_MAC);
InfoBarTabHelper* infobar_helper = wrapper->infobar_tab_helper();

Powered by Google App Engine
This is Rietveld 408576698