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

Unified Diff: content/shell/android/shell_apk/src/org/chromium/content_shell_apk/ContentShellApplication.java

Issue 23522032: Change method of activity tracking done in ActivityStatus. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Actually remove isActive this time Created 7 years, 3 months 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: content/shell/android/shell_apk/src/org/chromium/content_shell_apk/ContentShellApplication.java
diff --git a/content/shell/android/shell_apk/src/org/chromium/content_shell_apk/ContentShellApplication.java b/content/shell/android/shell_apk/src/org/chromium/content_shell_apk/ContentShellApplication.java
index ddbe76f69661978ee79156283295c76f30c6180f..284f41229863dd56e3e49ffe576a75109b40571b 100644
--- a/content/shell/android/shell_apk/src/org/chromium/content_shell_apk/ContentShellApplication.java
+++ b/content/shell/android/shell_apk/src/org/chromium/content_shell_apk/ContentShellApplication.java
@@ -4,17 +4,15 @@
package org.chromium.content_shell_apk;
-import android.app.Application;
-
+import org.chromium.base.ChromiumApplication;
import org.chromium.base.PathUtils;
-import org.chromium.content.app.LibraryLoader;
import org.chromium.content.browser.ResourceExtractor;
/**
* Entry point for the content shell application. Handles initialization of information that needs
* to be shared across the main activity and the child services created.
*/
-public class ContentShellApplication extends Application {
+public class ContentShellApplication extends ChromiumApplication {
private static final String[] MANDATORY_PAK_FILES = new String[] {"content_shell.pak"};
private static final String PRIVATE_DATA_DIRECTORY_SUFFIX = "content_shell";

Powered by Google App Engine
This is Rietveld 408576698