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

Unified Diff: base/test/android/junit/src/org/chromium/base/test/shadows/ShadowMultiDex.java

Issue 2243353002: (Reland) Update all Robolectric tests to Robolectric 3.0 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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: base/test/android/junit/src/org/chromium/base/test/shadows/ShadowMultiDex.java
diff --git a/base/test/android/junit/src/org/chromium/base/test/shadows/ShadowMultiDex.java b/base/test/android/junit/src/org/chromium/base/test/shadows/ShadowMultiDex.java
deleted file mode 100644
index b3ff57e372e5aa2c55b981bab8920585cfee70ee..0000000000000000000000000000000000000000
--- a/base/test/android/junit/src/org/chromium/base/test/shadows/ShadowMultiDex.java
+++ /dev/null
@@ -1,21 +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.base.test.shadows;
-
-import android.content.Context;
-import android.support.multidex.MultiDex;
-
-import org.robolectric.annotation.Implementation;
-import org.robolectric.annotation.Implements;
-
-/** Do-nothing shadow for {@link android.support.multidex.MultiDex}. */
-@Implements(MultiDex.class)
-public class ShadowMultiDex {
-
- @Implementation
- public static void install(Context context) {
- }
-
-}

Powered by Google App Engine
This is Rietveld 408576698