| Index: chrome/test/android/javatests/src/org/chromium/chrome/test/util/ChromeRestriction.java
|
| diff --git a/chrome/test/android/javatests/src/org/chromium/chrome/test/util/ChromeRestriction.java b/chrome/test/android/javatests/src/org/chromium/chrome/test/util/ChromeRestriction.java
|
| index f6d6b4aa948f7e99d2b2802047a95ae869f4ece4..31f9da768ddc1e2b7878dfdb099e89d3627ffef7 100644
|
| --- a/chrome/test/android/javatests/src/org/chromium/chrome/test/util/ChromeRestriction.java
|
| +++ b/chrome/test/android/javatests/src/org/chromium/chrome/test/util/ChromeRestriction.java
|
| @@ -18,11 +18,13 @@ public final class ChromeRestriction {
|
| /** Specifies the test is only valid on official build. */
|
| public static final String RESTRICTION_TYPE_OFFICIAL_BUILD = "Official_Build";
|
| /** Specifies the test is only valid on a Daydream-ready device */
|
| - public static final String RESTRICTION_TYPE_DAYDREAM = "Daydream";
|
| + public static final String RESTRICTION_TYPE_DEVICE_DAYDREAM = "Daydream_Ready";
|
| /** Specifies the test is only valid on a non-Daydream-ready device */
|
| - public static final String RESTRICTION_TYPE_NON_DAYDREAM = "Non-Daydream";
|
| + public static final String RESTRICTION_TYPE_DEVICE_NON_DAYDREAM = "Non_Daydream_Ready";
|
| /** Specifies the test is only valid if the current VR viewer is Daydream View */
|
| - public static final String RESTRICTION_TYPE_DAYDREAM_VIEW = "Daydream_View";
|
| + public static final String RESTRICTION_TYPE_VIEWER_DAYDREAM = "Daydream_View";
|
| + /** Specifies the test is only valid if the current VR viewer is not Daydream View */
|
| + public static final String RESTRICTION_TYPE_VIEWER_NON_DAYDREAM = "Non_Daydream_View";
|
| /** Specifies the test is only valid on devices that support WebVR */
|
| public static final String RESTRICTION_TYPE_WEBVR_SUPPORTED = "WebVR_Supported";
|
| /** Specifies the test is only valid on devices that do not support WebVR */
|
|
|