| Index: mojo/runner/android/android_handler.cc
|
| diff --git a/mojo/runner/android/android_handler.cc b/mojo/runner/android/android_handler.cc
|
| index 3338b56cea244e39b9e40d779bdcbfb4048f884f..354720a4968621bd71506983ee8b0cab1d7e936c 100644
|
| --- a/mojo/runner/android/android_handler.cc
|
| +++ b/mojo/runner/android/android_handler.cc
|
| @@ -36,17 +36,14 @@ namespace {
|
| void RunAndroidApplication(JNIEnv* env,
|
| jobject j_context,
|
| const base::FilePath& app_path,
|
| - jint j_handle,
|
| - bool is_cached_app) {
|
| + jint j_handle) {
|
| InterfaceRequest<Application> application_request =
|
| MakeRequest<Application>(MakeScopedHandle(MessagePipeHandle(j_handle)));
|
|
|
| // Load the library, so that we can set the application context there if
|
| // needed.
|
| // TODO(vtl): We'd use a ScopedNativeLibrary, but it doesn't have .get()!
|
| - base::NativeLibrary app_library = LoadNativeApplication(
|
| - app_path, is_cached_app ? shell::NativeApplicationCleanup::DONT_DELETE
|
| - : shell::NativeApplicationCleanup::DELETE);
|
| + base::NativeLibrary app_library = LoadNativeApplication(app_path);
|
| if (!app_library)
|
| return;
|
|
|
|
|