| Index: chrome/test/android/javatests/src/org/chromium/chrome/test/util/MaxAndroidSdkLevel.java
|
| diff --git a/chrome/test/android/javatests/src/org/chromium/chrome/test/util/MaxAndroidSdkLevel.java b/chrome/test/android/javatests/src/org/chromium/chrome/test/util/MaxAndroidSdkLevel.java
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..e71f689ea9bf8ae261cabb2bf1b90b78f0b91acf
|
| --- /dev/null
|
| +++ b/chrome/test/android/javatests/src/org/chromium/chrome/test/util/MaxAndroidSdkLevel.java
|
| @@ -0,0 +1,19 @@
|
| +// Copyright 2014 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.chrome.test.util;
|
| +
|
| +import java.lang.annotation.ElementType;
|
| +import java.lang.annotation.Inherited;
|
| +import java.lang.annotation.Retention;
|
| +import java.lang.annotation.RetentionPolicy;
|
| +import java.lang.annotation.Target;
|
| +
|
| +@Inherited
|
| +@Retention(RetentionPolicy.RUNTIME)
|
| +@Target({ElementType.TYPE})
|
| +public @interface MaxAndroidSdkLevel {
|
| + int value() default Integer.MAX_VALUE;
|
| +}
|
| +
|
|
|