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

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

Issue 1073005: Move RTL related functions from app/l10n_util to base/i18n/rtl... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 9 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/browser/gtk/rounded_window.cc ('k') | chrome/browser/gtk/tab_contents_container_gtk.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/gtk/status_bubble_gtk.cc
===================================================================
--- chrome/browser/gtk/status_bubble_gtk.cc (revision 42180)
+++ chrome/browser/gtk/status_bubble_gtk.cc (working copy)
@@ -8,8 +8,8 @@
#include <algorithm>
-#include "app/l10n_util.h"
#include "app/text_elider.h"
+#include "base/i18n/rtl.h"
#include "base/message_loop.h"
#include "base/utf_string_conversions.h"
#include "chrome/browser/gtk/gtk_theme_provider.h"
@@ -157,7 +157,7 @@
if (!toplevel || !GTK_WIDGET_REALIZED(toplevel))
return;
- bool ltr = (l10n_util::GetTextDirection() == l10n_util::LEFT_TO_RIGHT);
+ bool ltr = !base::i18n::IsRTL();
GtkRequisition requisition;
gtk_widget_size_request(container_.get(), &requisition);
@@ -219,7 +219,7 @@
}
void StatusBubbleGtk::InitWidgets() {
- bool ltr = (l10n_util::GetTextDirection() == l10n_util::LEFT_TO_RIGHT);
+ bool ltr = !base::i18n::IsRTL();
label_ = gtk_label_new(NULL);
@@ -275,7 +275,7 @@
flip_horizontally_ = flip_horizontally;
- bool ltr = (l10n_util::GetTextDirection() == l10n_util::LEFT_TO_RIGHT);
+ bool ltr = !base::i18n::IsRTL();
bool on_left = (ltr && !flip_horizontally) || (!ltr && flip_horizontally);
gtk_alignment_set_padding(GTK_ALIGNMENT(padding_),
« no previous file with comments | « chrome/browser/gtk/rounded_window.cc ('k') | chrome/browser/gtk/tab_contents_container_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698