Chromium Code Reviews| 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
|