| Index: base/android/java/src/org/chromium/base/LocaleUtils.java
|
| diff --git a/base/android/java/src/org/chromium/base/LocaleUtils.java b/base/android/java/src/org/chromium/base/LocaleUtils.java
|
| index 4f97d3a25c74e8a9bb4c29b936ee9abcf942639c..82b2c8fc6667cd7ccc7cd96c58bfaef8d76ab595 100644
|
| --- a/base/android/java/src/org/chromium/base/LocaleUtils.java
|
| +++ b/base/android/java/src/org/chromium/base/LocaleUtils.java
|
| @@ -47,9 +47,9 @@ public class LocaleUtils {
|
| @CalledByNative
|
| private static String getDefaultCountryCode() {
|
| CommandLine commandLine = CommandLine.getInstance();
|
| - return commandLine.hasSwitch(BaseSwitches.DEFAULT_COUNTRY_CODE_AT_INSTALL) ?
|
| - commandLine.getSwitchValue(BaseSwitches.DEFAULT_COUNTRY_CODE_AT_INSTALL) :
|
| - Locale.getDefault().getCountry();
|
| + return commandLine.hasSwitch(BaseSwitches.DEFAULT_COUNTRY_CODE_AT_INSTALL)
|
| + ? commandLine.getSwitchValue(BaseSwitches.DEFAULT_COUNTRY_CODE_AT_INSTALL)
|
| + : Locale.getDefault().getCountry();
|
| }
|
|
|
| }
|
|
|