Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(81)

Unified Diff: content/public/android/javatests/src/org/chromium/content/browser/PhoneNumberDetectionTest.java

Issue 62333025: [Android] Move CommandLine.java to base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
}

Powered by Google App Engine
This is Rietveld 408576698