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 7b75471f977617c4835b314afb67d73547989458..1bbf97d1d51a088609456d67380a4f1b7f007d66 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 |
@@ -4,9 +4,11 @@ |
package org.chromium.android_webview.shell; |
+import org.chromium.android_webview.R; |
import org.chromium.base.CommandLine; |
import org.chromium.base.annotations.SuppressFBWarnings; |
import org.chromium.content.app.ContentApplication; |
+import org.chromium.ui.base.ResourceBundle; |
/** |
* The android_webview shell Application subclass. |
@@ -16,6 +18,16 @@ public class AwShellApplication extends ContentApplication { |
super(false /* mShouldInitializeApplicationStatusTracking */); |
} |
+ @Override |
+ public void onCreate() { |
+ super.onCreate(); |
+ } |
+ |
+ @Override |
+ protected void initializeLibraryDependencies() { |
+ ResourceBundle.initializeLocalePaks(this, R.array.locale_paks); |
+ } |
+ |
@SuppressFBWarnings("DMI_HARDCODED_ABSOLUTE_FILENAME") |
@Override |
public void initCommandLine() { |