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

Unified Diff: chrome/browser/gtk/nine_box.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/menu_gtk.cc ('k') | chrome/browser/gtk/rounded_window.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/gtk/nine_box.cc
===================================================================
--- chrome/browser/gtk/nine_box.cc (revision 42180)
+++ chrome/browser/gtk/nine_box.cc (working copy)
@@ -4,10 +4,10 @@
#include "chrome/browser/gtk/nine_box.h"
-#include "app/l10n_util.h"
#include "app/resource_bundle.h"
#include "app/theme_provider.h"
#include "base/basictypes.h"
+#include "base/i18n/rtl.h"
#include "base/logging.h"
#include "gfx/gtk_util.h"
#include "gfx/point.h"
@@ -132,7 +132,7 @@
cairo_translate(cr, dst->allocation.x, dst->allocation.y);
}
- if (l10n_util::GetTextDirection() == l10n_util::RIGHT_TO_LEFT) {
+ if (base::i18n::IsRTL()) {
cairo_translate(cr, dst_width, 0.0f);
cairo_scale(cr, -1.0f, 1.0f);
}
@@ -224,7 +224,7 @@
cairo_destroy(cr);
// Mask the widget's window's shape.
- if (l10n_util::GetTextDirection() == l10n_util::LEFT_TO_RIGHT) {
+ if (!base::i18n::IsRTL()) {
gtk_widget_shape_combine_mask(widget, mask, 0, 0);
} else {
GdkBitmap* flipped_mask = gdk_pixmap_new(NULL, width, height, 1);
« no previous file with comments | « chrome/browser/gtk/menu_gtk.cc ('k') | chrome/browser/gtk/rounded_window.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698