Chromium Code Reviews| Index: chrome/android/junit/src/org/chromium/chrome/browser/offlinepages/OfflinePageTestRunner.java |
| diff --git a/chrome/android/junit/src/org/chromium/chrome/browser/offlinepages/OfflinePageTestRunner.java b/chrome/android/junit/src/org/chromium/chrome/browser/offlinepages/OfflinePageTestRunner.java |
| deleted file mode 100644 |
| index 177b96299f2c2ebcdeff7fe69d0b66bbc5dea35d..0000000000000000000000000000000000000000 |
| --- a/chrome/android/junit/src/org/chromium/chrome/browser/offlinepages/OfflinePageTestRunner.java |
| +++ /dev/null |
| @@ -1,32 +0,0 @@ |
| -// Copyright 2016 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.chrome.browser.offlinepages; |
| - |
| -import org.junit.runners.model.InitializationError; |
| -import org.robolectric.internal.bytecode.InstrumentationConfiguration; |
| - |
| -import org.chromium.testing.local.LocalRobolectricTestRunner; |
| - |
| -/** |
| - * Custom Robolectric test runner that instruments the com.google.android.gms.gcm package |
| - * so Shadows of those classes can be created. |
| - */ |
| -public class OfflinePageTestRunner extends LocalRobolectricTestRunner { |
| - |
| - /** |
| - * OfflinePageTestRunner constructor |
| - */ |
| - public OfflinePageTestRunner(Class<?> testClass) throws InitializationError { |
| - super(testClass); |
| - } |
| - |
| - @Override |
| - public InstrumentationConfiguration createClassLoaderConfig() { |
| - InstrumentationConfiguration.Builder builder = InstrumentationConfiguration.newBuilder(); |
| - builder.addInstrumentedPackage("com.google.android.gms.common"); |
|
nyquist
2017/03/14 21:20:37
Where did these go? Are they not required anymore?
mikecase (-- gone --)
2017/03/14 22:07:07
Ever since this commit...
https://github.com/robo
|
| - builder.addInstrumentedPackage("com.google.android.gms.gcm"); |
| - return builder.build(); |
| - } |
| -} |