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

Unified Diff: chrome/browser/gtk/theme_install_bubble_view_gtk.cc

Issue 361006: Switch theme loading to use its own string.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 1 month 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/gtk/theme_install_bubble_view_gtk.cc
===================================================================
--- chrome/browser/gtk/theme_install_bubble_view_gtk.cc (revision 30959)
+++ chrome/browser/gtk/theme_install_bubble_view_gtk.cc (working copy)
@@ -88,10 +88,9 @@
gtk_container_set_border_width(GTK_CONTAINER(widget_), kTextPadding);
GtkWidget* label = gtk_label_new(NULL);
- // Need our own copy of the "Loading..." string: http://crbug.com/24177
gchar* markup = g_markup_printf_escaped(
"<span size='xx-large'>%s</span>",
- l10n_util::GetStringUTF8(IDS_TAB_LOADING_TITLE).c_str());
+ l10n_util::GetStringUTF8(IDS_THEME_LOADING_TITLE).c_str());
gtk_label_set_markup(GTK_LABEL(label), markup);
g_free(markup);
« no previous file with comments | « chrome/browser/cocoa/theme_install_bubble_view.mm ('k') | chrome/browser/views/theme_install_bubble_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698