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

Side by Side Diff: android_webview/test/shell/src/org/chromium/android_webview/test/WebViewParameterization.java

Issue 2933623002: Create AwJUnit4ClassRunner AwActivityTestRule and convert AwContentsTest (Closed)
Patch Set: rebase + fix errors Created 3 years, 5 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 package org.chromium.android_webview.test;
6
7 import java.lang.annotation.ElementType;
8 import java.lang.annotation.Retention;
9 import java.lang.annotation.RetentionPolicy;
10 import java.lang.annotation.Target;
11
12 /**
13 * WebView
14 *
15 * This usually used by test that only runs in WebView javatests that only runs in sandboxed mode
16 * or single process mode.
17 */
18 @Retention(RetentionPolicy.RUNTIME)
19 @Target({ElementType.TYPE})
20 public @interface WebViewParameterization {}
boliu 2017/07/20 21:22:48 not used?
the real yoland 2017/07/27 00:29:48 Removed
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698