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