Chromium Code Reviews| Index: chrome/browser/chromeos/dom_ui/system_settings_provider.cc | 
| diff --git a/chrome/browser/chromeos/dom_ui/system_settings_provider.cc b/chrome/browser/chromeos/dom_ui/system_settings_provider.cc | 
| index cbf54a27fc59ae3216ded03e966aa145547e34f4..9dbf0b36b708e5320a9b573cd6fc321947a5a36c 100644 | 
| --- a/chrome/browser/chromeos/dom_ui/system_settings_provider.cc | 
| +++ b/chrome/browser/chromeos/dom_ui/system_settings_provider.cc | 
| @@ -273,7 +273,7 @@ string16 SystemSettingsProvider::GetTimezoneName( | 
| IDS_OPTIONS_SETTINGS_TIMEZONE_DISPLAY_TEMPLATE, ASCIIToUTF16(offset_str), | 
| string16(name.getBuffer(), name.length()), GetExemplarCity(timezone))); | 
| string16 rtl_safe_result = result; | 
| - base::i18n::AdjustStringForLocaleDirection(result, &rtl_safe_result); | 
| + base::i18n::AdjustStringForLocaleDirection(&rtl_safe_result); | 
| return rtl_safe_result; | 
| 
 
Avi (use Gerrit)
2010/11/23 16:07:08
So the original code was wrong :). Drop the use of
 
 | 
| } |