| 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) {
|
|
|