summaryrefslogtreecommitdiffstats
path: root/android_webview/test
diff options
context:
space:
mode:
Diffstat (limited to 'android_webview/test')
-rw-r--r--android_webview/test/shell/src/org/chromium/android_webview/shell/AwShellApplication.java5
1 files changed, 3 insertions, 2 deletions
diff --git a/android_webview/test/shell/src/org/chromium/android_webview/shell/AwShellApplication.java b/android_webview/test/shell/src/org/chromium/android_webview/shell/AwShellApplication.java
index 29b0c44..2faa2e4 100644
--- a/android_webview/test/shell/src/org/chromium/android_webview/shell/AwShellApplication.java
+++ b/android_webview/test/shell/src/org/chromium/android_webview/shell/AwShellApplication.java
@@ -9,9 +9,10 @@ import android.content.Context;
import android.os.Debug;
import android.util.Log;
+import org.chromium.base.BaseSwitches;
+import org.chromium.base.CommandLine;
import org.chromium.android_webview.AwBrowserProcess;
import org.chromium.content.browser.ResourceExtractor;
-import org.chromium.content.common.CommandLine;
public class AwShellApplication extends Application {
@@ -29,7 +30,7 @@ public class AwShellApplication extends Application {
CommandLine.initFromFile("/data/local/tmp/android-webview-command-line");
- if (CommandLine.getInstance().hasSwitch(CommandLine.WAIT_FOR_JAVA_DEBUGGER)) {
+ if (CommandLine.getInstance().hasSwitch(BaseSwitches.WAIT_FOR_JAVA_DEBUGGER)) {
Log.e(TAG, "Waiting for Java debugger to connect...");
Debug.waitForDebugger();
Log.e(TAG, "Java debugger connected. Resuming execution.");