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

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

Issue 12609013: [android_webview] Build test code against the shell APK. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix up minsdkversoin 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/test/shell/src/org/chromium/android_webview/shell/AwShellApplication.java
diff --git a/android_webview/shell_apk/src/org/chromium/android_webview/shell/AndroidWebViewTestShellApplication.java b/android_webview/test/shell/src/org/chromium/android_webview/shell/AwShellApplication.java
similarity index 83%
rename from android_webview/shell_apk/src/org/chromium/android_webview/shell/AndroidWebViewTestShellApplication.java
rename to android_webview/test/shell/src/org/chromium/android_webview/shell/AwShellApplication.java
index 44e64c2c90e92bb915273c1419b9115e82bd5333..585e9d9c04f9ef655a5a2ef1d1ebbbd73140f85c 100644
--- a/android_webview/shell_apk/src/org/chromium/android_webview/shell/AndroidWebViewTestShellApplication.java
+++ b/android_webview/test/shell/src/org/chromium/android_webview/shell/AwShellApplication.java
@@ -8,11 +8,10 @@ import android.app.Application;
import android.content.Context;
import org.chromium.android_webview.AwBrowserProcess;
-import org.chromium.android_webview.test.AwTestResourceProvider;
import org.chromium.content.browser.ResourceExtractor;
import org.chromium.content.common.CommandLine;
-public class AndroidWebViewTestShellApplication extends Application {
+public class AwShellApplication extends Application {
/** The minimum set of .pak files the test runner needs. */
private static final String[] MANDATORY_PAKS = {
@@ -23,7 +22,7 @@ public class AndroidWebViewTestShellApplication extends Application {
public void onCreate() {
super.onCreate();
- AwTestResourceProvider.registerResources(this);
+ AwShellResourceProvider.registerResources(this);
CommandLine.initFromFile("/data/local/chrome-command-line");

Powered by Google App Engine
This is Rietveld 408576698