Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(163)

Unified Diff: chrome/test/android/javatests/src/org/chromium/chrome/test/util/ChromeRestriction.java

Issue 2753303002: Add screen tap WebVR tests (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 */

Powered by Google App Engine
This is Rietveld 408576698