| Index: shell/android/apk/src/org/chromium/mojo/shell/MojoShellActivity.java
|
| diff --git a/shell/android/apk/src/org/chromium/mojo/shell/MojoShellActivity.java b/shell/android/apk/src/org/chromium/mojo/shell/MojoShellActivity.java
|
| index 64979cb0c20c69dc81bc09fcce18948e85136acb..954ecd146f46918da9991a1a2bb985475d000f4f 100644
|
| --- a/shell/android/apk/src/org/chromium/mojo/shell/MojoShellActivity.java
|
| +++ b/shell/android/apk/src/org/chromium/mojo/shell/MojoShellActivity.java
|
| @@ -4,18 +4,17 @@
|
|
|
| package org.chromium.mojo.shell;
|
|
|
| -import android.app.Activity;
|
| import android.content.Intent;
|
| -import android.os.Bundle;
|
|
|
| /**
|
| * Entry point for the Mojo Shell application.
|
| */
|
| -public class MojoShellActivity extends Activity {
|
| +public class MojoShellActivity extends BaseActivity {
|
| + /**
|
| + * @see BaseActivity#onCreateWithPermissions()
|
| + */
|
| @Override
|
| - protected void onCreate(final Bundle savedInstanceState) {
|
| - super.onCreate(savedInstanceState);
|
| -
|
| + protected void onCreateWithPermissions() {
|
| Intent serviceIntent = new Intent(this, ShellService.class);
|
| // Copy potential startup arguments.
|
| serviceIntent.putExtras(getIntent());
|
|
|