Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(115)

Unified Diff: shell/android/apk/src/org/chromium/mojo/shell/MojoShellActivity.java

Issue 1431663002: Update android SDK to API version 23. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Folloe review Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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());

Powered by Google App Engine
This is Rietveld 408576698