Index: testing/android/native_test/java/src/org/chromium/native_test/NativeTest.java |
diff --git a/testing/android/native_test/java/src/org/chromium/native_test/NativeTest.java b/testing/android/native_test/java/src/org/chromium/native_test/NativeTest.java |
index 537c5efc777aab2ba1c4f86cf3445fc5623661be..2f787c97c5128afeea72f281987d8c07fd1b5e74 100644 |
--- a/testing/android/native_test/java/src/org/chromium/native_test/NativeTest.java |
+++ b/testing/android/native_test/java/src/org/chromium/native_test/NativeTest.java |
@@ -16,7 +16,6 @@ |
import org.chromium.base.Log; |
import org.chromium.base.annotations.JNINamespace; |
import org.chromium.base.multidex.ChromiumMultiDexInstaller; |
-import org.chromium.base.test.util.UrlUtils; |
import org.chromium.test.reporter.TestStatusReporter; |
import java.io.File; |
@@ -155,7 +154,7 @@ |
private void runTests(Activity activity) { |
nativeRunTests(mCommandLineFlags.toString(), mCommandLineFilePath, mStdoutFilePath, |
- mStdoutFifo, activity.getApplicationContext(), UrlUtils.getIsolatedTestRoot()); |
+ mStdoutFifo, activity.getApplicationContext()); |
activity.finish(); |
mReporter.testRunFinished(Process.myPid()); |
} |
@@ -168,5 +167,5 @@ |
} |
private native void nativeRunTests(String commandLineFlags, String commandLineFilePath, |
- String stdoutFilePath, boolean stdoutFifo, Context appContext, String testDataDir); |
+ String stdoutFilePath, boolean stdoutFifo, Context appContext); |
} |