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

Unified Diff: mojo/runner/android/bootstrap.cc

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/bootstrap.cc
diff --git a/mojo/runner/android/bootstrap.cc b/mojo/runner/android/bootstrap.cc
index 39890c8172d4b93d12a4606e6c5791358a3c5ecc..4f1b39490aa2951e1ff89a6061010dd3541a4cde 100644
--- a/mojo/runner/android/bootstrap.cc
+++ b/mojo/runner/android/bootstrap.cc
@@ -17,13 +17,12 @@ void Bootstrap(JNIEnv* env,
const JavaParamRef<jobject>& j_context,
const JavaParamRef<jstring>& j_native_library_path,
jint j_handle,
- jlong j_run_application_ptr,
- jboolean is_cached_app) {
+ jlong j_run_application_ptr) {
base::FilePath app_path(
base::android::ConvertJavaStringToUTF8(env, j_native_library_path));
RunAndroidApplicationFn run_android_application_fn =
reinterpret_cast<RunAndroidApplicationFn>(j_run_application_ptr);
- run_android_application_fn(env, j_context, app_path, j_handle, is_cached_app);
+ run_android_application_fn(env, j_context, app_path, j_handle);
}
bool RegisterBootstrapJni(JNIEnv* env) {

Powered by Google App Engine
This is Rietveld 408576698