Chromium Code Reviews| Index: ios/chrome/app/chrome_exe_main.mm |
| diff --git a/ios/chrome/app/chrome_exe_main.mm b/ios/chrome/app/chrome_exe_main.mm |
| index c44744584ad5697be53681ed7cd107b5cabba092..c93ac84402ae245bed688405772e107a33e89b54 100644 |
| --- a/ios/chrome/app/chrome_exe_main.mm |
| +++ b/ios/chrome/app/chrome_exe_main.mm |
| @@ -35,9 +35,7 @@ int main(int argc, char* argv[]) { |
| // Set NSUserDefaults keys to force pseudo-RTL if needed. |
| if ([standardDefaults boolForKey:@"EnablePseudoRTL"]) { |
| NSDictionary* pseudoDict = [NSDictionary |
|
sdefresne
2017/01/10 09:28:30
Can you change this to @{} syntax?
NSDictionary
|
| - dictionaryWithObjectsAndKeys:@"YES", @"AppleTextDirection", @"YES", |
| - @"NSForceRightToLeftWritingDirection", |
| - nil]; |
| + dictionaryWithObjectsAndKeys:@"YES", @"AppleTextDirection", nil]; |
| [standardDefaults registerDefaults:pseudoDict]; |
| } |