Chromium Code Reviews| Index: android_webview/test/shell/src/org/chromium/android_webview/shell/AwShellApplication.java |
| 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 070b1a67b3631c47882ed9f7de32f48a6b7f29b5..986785ea4ad76dd3ee9947ef650b21b426f163d3 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,7 +21,6 @@ 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 = {"natives_blob.bin", "snapshot_blob.bin"}; |
| @Override |
| public void onCreate() { |
| @@ -47,7 +46,7 @@ public class AwShellApplication extends ContentApplication { |
| @Override |
| protected void initializeLibraryDependencies() { |
| - ResourceExtractor.setMandatoryPaksToExtract(MANDATORY_PAKS); |
| + ResourceExtractor.setMandatoryPaksToExtract(""); |
|
rmcilroy
2015/06/15 10:21:02
Same question as before - can we just remove this
agrieve
2015/06/15 14:22:04
We can't. ResourceExtractor asserts that setMandat
rmcilroy
2015/06/15 17:39:42
Ok makes sense. Could you add a TODO to tidy this
|
| ResourceExtractor.setExtractImplicitLocaleForTesting(false); |
| } |