| Index: content/shell/android/shell_apk/src/org/chromium/content_shell_apk/ContentShellActivity.java
|
| diff --git a/content/shell/android/shell_apk/src/org/chromium/content_shell_apk/ContentShellActivity.java b/content/shell/android/shell_apk/src/org/chromium/content_shell_apk/ContentShellActivity.java
|
| index c98ba123a8fdf47f940796d462895df2125d9994..f6720b6210f0c49e8d6498882fc7f43f69920997 100644
|
| --- a/content/shell/android/shell_apk/src/org/chromium/content_shell_apk/ContentShellActivity.java
|
| +++ b/content/shell/android/shell_apk/src/org/chromium/content_shell_apk/ContentShellActivity.java
|
| @@ -4,6 +4,7 @@
|
|
|
| package org.chromium.content_shell_apk;
|
|
|
| +import android.app.Activity;
|
| import android.content.BroadcastReceiver;
|
| import android.content.Context;
|
| import android.content.Intent;
|
| @@ -14,7 +15,6 @@ import android.util.Log;
|
| import android.view.KeyEvent;
|
| import android.widget.Toast;
|
|
|
| -import org.chromium.base.ChromiumActivity;
|
| import org.chromium.base.MemoryPressureListener;
|
| import org.chromium.content.app.LibraryLoader;
|
| import org.chromium.content.browser.ActivityContentVideoViewClient;
|
| @@ -33,7 +33,7 @@ import org.chromium.ui.WindowAndroid;
|
| /**
|
| * Activity for managing the Content Shell.
|
| */
|
| -public class ContentShellActivity extends ChromiumActivity {
|
| +public class ContentShellActivity extends Activity {
|
|
|
| public static final String COMMAND_LINE_FILE = "/data/local/tmp/content-shell-command-line";
|
| private static final String TAG = "ContentShellActivity";
|
|
|