summaryrefslogtreecommitdiffstats
path: root/android_webview/test
diff options
context:
space:
mode:
authoragrieve <agrieve@chromium.org>2015-06-19 08:35:48 -0700
committerCommit bot <commit-bot@chromium.org>2015-06-19 15:36:17 +0000
commitf3930cfae7a93c5065588c9ba7be5c6927f46588 (patch)
treebbfc5d0f5e8070abe3966b5698c90411bb5144da /android_webview/test
parent97de162a0bd8dc7dc012c31e9c7b1a981ef23acb (diff)
downloadchromium_src-f3930cfae7a93c5065588c9ba7be5c6927f46588.zip
chromium_src-f3930cfae7a93c5065588c9ba7be5c6927f46588.tar.gz
chromium_src-f3930cfae7a93c5065588c9ba7be5c6927f46588.tar.bz2
Store and load icudtl.dat directly from the apk rather than extracting on start-up.
Also changes so that browser process caches a FD to the file rather than re-opening it for each child process. We store icudtl.dat uncompressed in the apk now, increasing the apk size, but saving 6mb on-disk. BUG=394502 Review URL: https://codereview.chromium.org/1147213004 Cr-Commit-Position: refs/heads/master@{#335261}
Diffstat (limited to 'android_webview/test')
-rw-r--r--android_webview/test/shell/src/org/chromium/android_webview/shell/AwShellApplication.java4
1 files changed, 1 insertions, 3 deletions
diff --git a/android_webview/test/shell/src/org/chromium/android_webview/shell/AwShellApplication.java b/android_webview/test/shell/src/org/chromium/android_webview/shell/AwShellApplication.java
index 5e1a070..070b1a6 100644
--- a/android_webview/test/shell/src/org/chromium/android_webview/shell/AwShellApplication.java
+++ b/android_webview/test/shell/src/org/chromium/android_webview/shell/AwShellApplication.java
@@ -21,9 +21,7 @@ public class AwShellApplication extends ContentApplication {
private static final String TAG = "AwShellApplication";
/** The minimum set of .pak files the test runner needs. */
- private static final String[] MANDATORY_PAKS = { "icudtl.dat",
- "natives_blob.bin",
- "snapshot_blob.bin" };
+ private static final String[] MANDATORY_PAKS = {"natives_blob.bin", "snapshot_blob.bin"};
@Override
public void onCreate() {