Index: android_webview/javatests/src/org/chromium/android_webview/test/AndroidWebViewTestRunnerApplication.java |
diff --git a/android_webview/javatests/src/org/chromium/android_webview/test/AndroidWebViewTestRunnerApplication.java b/android_webview/javatests/src/org/chromium/android_webview/test/AndroidWebViewTestRunnerApplication.java |
deleted file mode 100644 |
index 55ca4ccf22eae896bbcbb19f03895c4a6fb5f545..0000000000000000000000000000000000000000 |
--- a/android_webview/javatests/src/org/chromium/android_webview/test/AndroidWebViewTestRunnerApplication.java |
+++ /dev/null |
@@ -1,31 +0,0 @@ |
-// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
-// Use of this source code is governed by a BSD-style license that can be |
-// found in the LICENSE file. |
- |
-package org.chromium.android_webview.test; |
- |
-import android.app.Application; |
- |
-import org.chromium.android_webview.AwBrowserProcess; |
-import org.chromium.content.browser.ResourceExtractor; |
-import org.chromium.content.common.CommandLine; |
- |
-public class AndroidWebViewTestRunnerApplication extends Application { |
- |
- /** The minimum set of .pak files the test runner needs. */ |
- private static final String[] MANDATORY_PAKS = { |
- "webviewchromium.pak", "en-US.pak" |
- }; |
- |
- @Override |
- public void onCreate() { |
- super.onCreate(); |
- |
- CommandLine.initFromFile("/data/local/chrome-command-line"); |
- |
- ResourceExtractor.setMandatoryPaksToExtract(MANDATORY_PAKS); |
- ResourceExtractor.setExtractImplicitLocaleForTesting(false); |
- AwBrowserProcess.loadLibrary(); |
- AwBrowserProcess.start(this); |
- } |
-} |