Chromium Code Reviews| OLD | NEW |
|---|---|
| (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
| |
| OLD | NEW |