1 // Copyright 2016 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.webview_ui_test.test.util;
6 
7 import java.lang.annotation.Retention;
8 import java.lang.annotation.RetentionPolicy;
9 
10 /**
11  * UseLayout annotation is used to inform WebViewUiTestRule to launch activity with specific layout
12  */
13 // TODO(yolandyan): enable Parametrized test with layout, write one test, run in multiple layouts
14 @Retention(RetentionPolicy.RUNTIME)
15 public @interface UseLayout {
value()16     String value();
17 }
18