| Index: content/public/android/javatests/src/org/chromium/content/browser/PhoneNumberDetectionTest.java
|
| diff --git a/content/public/android/javatests/src/org/chromium/content/browser/PhoneNumberDetectionTest.java b/content/public/android/javatests/src/org/chromium/content/browser/PhoneNumberDetectionTest.java
|
| index a0ad8d27f320983dc08f3622f02c22f834af34e3..622868cccafd91b1bce7310fe1340327fa3668e2 100644
|
| --- a/content/public/android/javatests/src/org/chromium/content/browser/PhoneNumberDetectionTest.java
|
| +++ b/content/public/android/javatests/src/org/chromium/content/browser/PhoneNumberDetectionTest.java
|
| @@ -8,8 +8,9 @@ import android.test.FlakyTest;
|
| import android.test.suitebuilder.annotation.LargeTest;
|
| import android.test.suitebuilder.annotation.MediumTest;
|
|
|
| +import org.chromium.base.CommandLine;
|
| import org.chromium.base.test.util.Feature;
|
| -import org.chromium.content.common.CommandLine;
|
| +import org.chromium.content.common.ContentSwitches;
|
|
|
| /**
|
| * Test suite for phone number detection.
|
| @@ -34,7 +35,7 @@ public class PhoneNumberDetectionTest extends ContentDetectionTestBase {
|
| private void startActivityWithTestUrlAndCountryIso(String testUrl, String countryIso)
|
| throws Throwable {
|
| final String[] cmdlineArgs = countryIso == null ? null : new String[] {
|
| - "--" + CommandLine.NETWORK_COUNTRY_ISO + "=" + countryIso };
|
| + "--" + ContentSwitches.NETWORK_COUNTRY_ISO + "=" + countryIso };
|
| startActivityWithTestUrlAndCommandLineArgs(testUrl, cmdlineArgs);
|
| }
|
|
|
|
|