| Index: content/shell/android/linker_test_apk/src/org/chromium/content_linker_test_apk/ContentLinkerTestActivity.java
|
| diff --git a/content/shell/android/linker_test_apk/src/org/chromium/content_linker_test_apk/ContentLinkerTestActivity.java b/content/shell/android/linker_test_apk/src/org/chromium/content_linker_test_apk/ContentLinkerTestActivity.java
|
| index 3d3cb90527155145d0ca25f6c6cbf36cddfcd3c1..785ca193d96080b1595c50480ede74f0982b0be0 100644
|
| --- a/content/shell/android/linker_test_apk/src/org/chromium/content_linker_test_apk/ContentLinkerTestActivity.java
|
| +++ b/content/shell/android/linker_test_apk/src/org/chromium/content_linker_test_apk/ContentLinkerTestActivity.java
|
| @@ -12,12 +12,13 @@ import android.util.Log;
|
| import android.view.LayoutInflater;
|
| import android.view.View;
|
|
|
| +import org.chromium.base.BaseSwitches;
|
| +import org.chromium.base.CommandLine;
|
| import org.chromium.content.app.LibraryLoader;
|
| import org.chromium.content.app.Linker;
|
| import org.chromium.content.browser.BrowserStartupController;
|
| import org.chromium.content.browser.ContentView;
|
| import org.chromium.content.browser.ContentViewClient;
|
| -import org.chromium.content.common.CommandLine;
|
| import org.chromium.content.common.ProcessInitException;
|
| import org.chromium.content_shell.Shell;
|
| import org.chromium.content_shell.ShellManager;
|
| @@ -135,7 +136,7 @@ public class ContentLinkerTestActivity extends Activity {
|
| }
|
|
|
| private void waitForDebuggerIfNeeded() {
|
| - 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...");
|
| android.os.Debug.waitForDebugger();
|
| Log.e(TAG, "Java debugger connected. Resuming execution.");
|
|
|