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

Unified Diff: chrome/browser/speech/speech_recognition_tray_icon_controller.cc

Issue 10407120: Moving tray icon and notification balloon for background speech recognition sessions to ChromeSpeec… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Turned context_name to string (instead of string16) Created 8 years, 6 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
Index: chrome/browser/speech/speech_recognition_tray_icon_controller.cc
diff --git a/chrome/browser/speech/speech_recognition_tray_icon_controller.cc b/chrome/browser/speech/speech_recognition_tray_icon_controller.cc
index 47dcce74862d512e17fc61c4c693fac78745cafd..3d57032fe87ec4bb49141b0e91daf68c895ad275 100644
--- a/chrome/browser/speech/speech_recognition_tray_icon_controller.cc
+++ b/chrome/browser/speech/speech_recognition_tray_icon_controller.cc
@@ -192,8 +192,7 @@ void SpeechRecognitionTrayIconController::ShowNotificationBalloon(
IDS_SPEECH_INPUT_TRAY_BALLOON_TITLE);
string16 message = l10n_util::GetStringFUTF16(
IDS_SPEECH_INPUT_TRAY_BALLOON_BODY,
- text,
- l10n_util::GetStringUTF16(IDS_PRODUCT_NAME));
+ text);
tray_icon_->DisplayBalloon(*g_images.Get().balloon_icon(), title, message);
}

Powered by Google App Engine
This is Rietveld 408576698