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

Unified Diff: android_webview/test/shell/src/org/chromium/android_webview/shell/AwShellApplication.java

Issue 1181733004: Do not require explicit initialization of ResourceExtractor (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@split-lang
Patch Set: rebase Created 5 years, 6 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: 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 f6dc9a5f325c0f8c6509969c6fed1f8f868cf7af..9e847c5479e6a5fd4e87606187a354a319f75f51 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
@@ -10,7 +10,6 @@ import android.util.Log;
import org.chromium.android_webview.AwBrowserProcess;
import org.chromium.base.BaseSwitches;
import org.chromium.base.CommandLine;
-import org.chromium.base.ResourceExtractor;
import org.chromium.base.TraceEvent;
import org.chromium.content.app.ContentApplication;
@@ -20,7 +19,6 @@ import org.chromium.content.app.ContentApplication;
public class AwShellApplication extends ContentApplication {
private static final String TAG = "AwShellApplication";
- /** The minimum set of .pak files the test runner needs. */
@Override
public void onCreate() {
@@ -45,11 +43,6 @@ public class AwShellApplication extends ContentApplication {
}
@Override
- protected void initializeLibraryDependencies() {
- ResourceExtractor.setMandatoryPaksToExtract(0);
- }
-
- @Override
public void initCommandLine() {
throw new UnsupportedOperationException();
}

Powered by Google App Engine
This is Rietveld 408576698