| Index: chrome/browser/cocoa/location_bar_view_mac.mm
|
| ===================================================================
|
| --- chrome/browser/cocoa/location_bar_view_mac.mm (revision 42180)
|
| +++ chrome/browser/cocoa/location_bar_view_mac.mm (working copy)
|
| @@ -6,6 +6,7 @@
|
|
|
| #include "app/l10n_util_mac.h"
|
| #include "app/resource_bundle.h"
|
| +#include "base/i18n/rtl.h"
|
| #include "base/nsimage_cache_mac.h"
|
| #include "base/stl_util-inl.h"
|
| #include "base/string_util.h"
|
| @@ -82,7 +83,7 @@
|
| } else {
|
| min_string = description.substr(0, chop_index);
|
| }
|
| - l10n_util::AdjustStringForLocaleDirection(min_string, &min_string);
|
| + base::i18n::AdjustStringForLocaleDirection(min_string, &min_string);
|
| return min_string;
|
| }
|
|
|
|
|