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

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

Issue 1344933002: Clean up some unused methods from ApplicationManager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 5 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: mojo/runner/android/apk/src/org/chromium/mojo/shell/Bootstrap.java
diff --git a/mojo/runner/android/apk/src/org/chromium/mojo/shell/Bootstrap.java b/mojo/runner/android/apk/src/org/chromium/mojo/shell/Bootstrap.java
index 9f78fb15a637d5f00a65b2535e00b43825ebec5b..4f21f2dd63a6a79f1091e9c450e59db76b48beef 100644
--- a/mojo/runner/android/apk/src/org/chromium/mojo/shell/Bootstrap.java
+++ b/mojo/runner/android/apk/src/org/chromium/mojo/shell/Bootstrap.java
@@ -22,26 +22,24 @@ public class Bootstrap implements Runnable {
private final File mApplicationNativeLibrary;
private final int mHandle;
private final long mRunApplicationPtr;
- private final boolean mIsCachedApp;
public Bootstrap(Context context, File bootstrapNativeLibrary, File applicationNativeLibrary,
- Integer handle, Long runApplicationPtr, Boolean isCachedApp) {
+ Integer handle, Long runApplicationPtr) {
mContext = context;
mBootstrapNativeLibrary = bootstrapNativeLibrary;
mApplicationNativeLibrary = applicationNativeLibrary;
mHandle = handle;
mRunApplicationPtr = runApplicationPtr;
- mIsCachedApp = isCachedApp;
}
@Override
public void run() {
System.load(mBootstrapNativeLibrary.getAbsolutePath());
System.load(mApplicationNativeLibrary.getAbsolutePath());
- nativeBootstrap(mContext, mApplicationNativeLibrary.getAbsolutePath(), mHandle,
- mRunApplicationPtr, mIsCachedApp);
+ nativeBootstrap(
+ mContext, mApplicationNativeLibrary.getAbsolutePath(), mHandle, mRunApplicationPtr);
}
- native void nativeBootstrap(Context context, String libraryPath, int handle,
- long runApplicationPtr, boolean isCachedApp);
+ native void nativeBootstrap(
+ Context context, String libraryPath, int handle, long runApplicationPtr);
}
« no previous file with comments | « mojo/runner/android/apk/src/org/chromium/mojo/shell/AndroidHandler.java ('k') | mojo/runner/android/bootstrap.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698