diff options
author | tedchoc@chromium.org <tedchoc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-31 09:50:55 +0000 |
---|---|---|
committer | tedchoc@chromium.org <tedchoc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-31 09:50:55 +0000 |
commit | fc6a26d9e719a609225ee9850128dd5deb70c6a0 (patch) | |
tree | edd06729d19507b676652fc6ba91fc0c53cffc3f /base | |
parent | accb9b4be26a85a75615f706b7b8b2f3bc4ac414 (diff) | |
download | chromium_src-fc6a26d9e719a609225ee9850128dd5deb70c6a0.zip chromium_src-fc6a26d9e719a609225ee9850128dd5deb70c6a0.tar.gz chromium_src-fc6a26d9e719a609225ee9850128dd5deb70c6a0.tar.bz2 |
Add a test restriction type for non-low end devices.
Renames small memory -> low end device to be consistent with our APIs.
BUG=308353
NOTRY=true
R=dtrainor@chromium.org
Review URL: https://codereview.chromium.org/52953003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@232073 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r-- | base/test/android/javatests/src/org/chromium/base/test/util/Restriction.java | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/base/test/android/javatests/src/org/chromium/base/test/util/Restriction.java b/base/test/android/javatests/src/org/chromium/base/test/util/Restriction.java index bf7c741..b088725 100644 --- a/base/test/android/javatests/src/org/chromium/base/test/util/Restriction.java +++ b/base/test/android/javatests/src/org/chromium/base/test/util/Restriction.java @@ -24,8 +24,11 @@ public @interface Restriction { /** Specifies the test is only valid on tablet form factors. */ public static final String RESTRICTION_TYPE_TABLET = "Tablet"; - /** Specifies the test is only valid on devices with a small amount of memory. */ - public static final String RESTRICTION_TYPE_SMALL_MEMORY = "Small_Memory"; + /** Specifies the test is only valid on low end devices that have less memory. */ + public static final String RESTRICTION_TYPE_LOW_END_DEVICE = "Low_End_Device"; + + /** Specifies the test is only valid on non-low end devices. */ + public static final String RESTRICTION_TYPE_NON_LOW_END_DEVICE = "Non_Low_End_Device"; /** * @return A list of restrictions. |