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

Unified Diff: chrome/browser/ui/views/extensions/extension_installed_bubble.cc

Issue 12212155: When focusing a tab via the extension API, bring focus to its containing window (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/views/extensions/extension_installed_bubble.cc
diff --git a/chrome/browser/ui/views/extensions/extension_installed_bubble.cc b/chrome/browser/ui/views/extensions/extension_installed_bubble.cc
index 0a44f9607229e275ce8a3a4876d319827c4002fc..d7dc1b3b25860fc076d20e08ea3536afcf7467e4 100644
--- a/chrome/browser/ui/views/extensions/extension_installed_bubble.cc
+++ b/chrome/browser/ui/views/extensions/extension_installed_bubble.cc
@@ -208,8 +208,12 @@ class InstalledBubbleContent : public views::View,
}
if (flavors_ & HOW_TO_MANAGE) {
- manage_ = new views::Label(
- l10n_util::GetStringUTF16(IDS_EXTENSION_INSTALLED_MANAGE_INFO));
+ manage_ = new views::Label(l10n_util::GetStringUTF16(
+#if defined(OS_CHROMEOS)
+ IDS_EXTENSION_INSTALLED_MANAGE_INFO_CHROMEOS));
+#else
+ IDS_EXTENSION_INSTALLED_MANAGE_INFO));
+#endif
manage_->SetFont(font);
manage_->SetMultiLine(true);
manage_->SetHorizontalAlignment(gfx::ALIGN_LEFT);
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698