Index: android_webview/tools/WebViewShell/src/org/chromium/webview_shell/WebViewLayoutTestRunner.java |
diff --git a/android_webview/tools/WebViewShell/src/org/chromium/webview_shell/WebViewLayoutTestRunner.java b/android_webview/tools/WebViewShell/src/org/chromium/webview_shell/WebViewLayoutTestRunner.java |
deleted file mode 100644 |
index 4356e3bf7f63a1c3bde6f14562b14a65486d9d21..0000000000000000000000000000000000000000 |
--- a/android_webview/tools/WebViewShell/src/org/chromium/webview_shell/WebViewLayoutTestRunner.java |
+++ /dev/null |
@@ -1,28 +0,0 @@ |
-// Copyright 2015 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.webview_shell; |
- |
-import android.os.Bundle; |
-import android.test.InstrumentationTestRunner; |
- |
-/** |
- * Customized test runner for running instrumentation tests in WebViewBrowserTests. |
- */ |
-public class WebViewLayoutTestRunner extends InstrumentationTestRunner { |
- private String mModeArgument; |
- private static final String MODE_REBASELINE = "rebaseline"; |
- |
- @Override |
- public void onCreate(Bundle arguments) { |
- super.onCreate(arguments); |
- if (arguments != null) { |
- mModeArgument = arguments.getString("mode"); |
- } |
- } |
- |
- public boolean isRebaseline() { |
- return mModeArgument != null ? mModeArgument.equals(MODE_REBASELINE) : false; |
- } |
-} |