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

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

Issue 1147203002: Revert of Changes caching logic of mojo java apps (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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 adcf81f42cb56c336b277ef1250333c08478001e..7d3717308cf8727aa18975484af18885596e29b1 100644
--- a/mojo/runner/android/bootstrap.cc
+++ b/mojo/runner/android/bootstrap.cc
@@ -17,13 +17,12 @@
jobject j_context,
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