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 9e847c5479e6a5fd4e87606187a354a319f75f51..ddfd3b2dfddfd00edb1a6b1ab057f02180541c45 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 |
@@ -8,10 +8,12 @@ import android.os.Debug; |
import android.util.Log; |
import org.chromium.android_webview.AwBrowserProcess; |
+import org.chromium.android_webview.R; |
import org.chromium.base.BaseSwitches; |
import org.chromium.base.CommandLine; |
import org.chromium.base.TraceEvent; |
import org.chromium.content.app.ContentApplication; |
+import org.chromium.ui.base.ResourceBundle; |
/** |
* The android_webview shell Application subclass. |
@@ -43,6 +45,11 @@ public class AwShellApplication extends ContentApplication { |
} |
@Override |
+ protected void initializeLibraryDependencies() { |
+ ResourceBundle.initializeLocalePaks(this, R.array.locale_paks); |
+ } |
+ |
+ @Override |
public void initCommandLine() { |
throw new UnsupportedOperationException(); |
} |