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

Unified Diff: android_webview/javatests/src/org/chromium/android_webview/test/AndroidWebViewTestRunnerApplication.java

Issue 12317015: [android_webview] Add test shell for webview. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 9 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/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);
- }
-}

Powered by Google App Engine
This is Rietveld 408576698