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

Unified Diff: components/test/android/browsertests_apk/src/org/chromium/components_browsertests_apk/ComponentsBrowserTestsApplication.java

Issue 1147213004: Store and load icudtl.dat directly from the apk rather than extracting on start-up (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@load-from-apk
Patch Set: CHECK(fd > 0) -> CHECK_GE(fd, 0) 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: components/test/android/browsertests_apk/src/org/chromium/components_browsertests_apk/ComponentsBrowserTestsApplication.java
diff --git a/components/test/android/browsertests_apk/src/org/chromium/components_browsertests_apk/ComponentsBrowserTestsApplication.java b/components/test/android/browsertests_apk/src/org/chromium/components_browsertests_apk/ComponentsBrowserTestsApplication.java
index 91ee597b9e6984623986b9b4bcafe810d15d0048..fd46d7c0c278cd702a45803cf09bfa0938be54f8 100644
--- a/components/test/android/browsertests_apk/src/org/chromium/components_browsertests_apk/ComponentsBrowserTestsApplication.java
+++ b/components/test/android/browsertests_apk/src/org/chromium/components_browsertests_apk/ComponentsBrowserTestsApplication.java
@@ -15,7 +15,7 @@ import org.chromium.base.ResourceExtractor;
*/
public class ComponentsBrowserTestsApplication extends BaseChromiumApplication {
private static final String[] MANDATORY_PAK_FILES =
- new String[] {"components_tests_resources.pak", "content_shell.pak", "icudtl.dat",
+ new String[] {"components_tests_resources.pak", "content_shell.pak",
"natives_blob.bin", "snapshot_blob.bin"};
private static final String PRIVATE_DATA_DIRECTORY_SUFFIX = "components_shell";

Powered by Google App Engine
This is Rietveld 408576698