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

Unified Diff: shell/android/apk/src/org/chromium/mojo_shell_apk/AndroidHandler.java

Issue 782013002: Android: decouple mojo shell from the network service. (Closed) Base URL: https://github.com/domokit/mojo.git@build-rule-for-the-network-service
Patch Set: Rebase. Created 6 years 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: shell/android/apk/src/org/chromium/mojo_shell_apk/AndroidHandler.java
diff --git a/shell/android/apk/src/org/chromium/mojo_shell_apk/AndroidHandler.java b/shell/android/apk/src/org/chromium/mojo_shell_apk/AndroidHandler.java
index 9b7838d6a2807add267ef2a4907da4d330776708..6c08ab623a472f9a31f140ad0a91ded4360f7aa0 100644
--- a/shell/android/apk/src/org/chromium/mojo_shell_apk/AndroidHandler.java
+++ b/shell/android/apk/src/org/chromium/mojo_shell_apk/AndroidHandler.java
@@ -81,9 +81,9 @@ public class AndroidHandler {
File bootstrap_native_library;
try {
bootstrap_java_library = FileHelper.extractFromAssets(context, BOOTSTRAP_JAVA_LIBRARY,
- getAssetDir(context));
+ getAssetDir(context), true);
bootstrap_native_library = FileHelper.extractFromAssets(context,
- BOOTSTRAP_NATIVE_LIBRARY, getAssetDir(context));
+ BOOTSTRAP_NATIVE_LIBRARY, getAssetDir(context), true);
} catch (Exception e) {
Log.e(TAG, "Extraction of bootstrap files from assets failed.", e);
return false;

Powered by Google App Engine
This is Rietveld 408576698