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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: android_webview/test/shell/src/org/chromium/android_webview/test/WebViewParameterization.java
diff --git a/android_webview/test/shell/src/org/chromium/android_webview/test/WebViewParameterization.java b/android_webview/test/shell/src/org/chromium/android_webview/test/WebViewParameterization.java
new file mode 100644
index 0000000000000000000000000000000000000000..ca0bb78c65405d6d370ead51e9a7e81ba66802ae
--- /dev/null
+++ b/android_webview/test/shell/src/org/chromium/android_webview/test/WebViewParameterization.java
@@ -0,0 +1,20 @@
+// Copyright 2017 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.android_webview.test;
+
+import java.lang.annotation.ElementType;
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
+import java.lang.annotation.Target;
+
+/**
+ * WebView
+ *
+ * This usually used by test that only runs in WebView javatests that only runs in sandboxed mode
+ * or single process mode.
+ */
+@Retention(RetentionPolicy.RUNTIME)
+@Target({ElementType.TYPE})
+public @interface WebViewParameterization {}
boliu 2017/07/20 21:22:48 not used?
the real yoland 2017/07/27 00:29:48 Removed

Powered by Google App Engine
This is Rietveld 408576698