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

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

Issue 2559873002: Enable VR shell on Android builds (Closed)
Patch Set: rebase Created 4 years 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
« no previous file with comments | « chrome/common/features.gni ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/android/javatests/src/org/chromium/chrome/test/ChromeInstrumentationTestRunner.java
diff --git a/chrome/test/android/javatests/src/org/chromium/chrome/test/ChromeInstrumentationTestRunner.java b/chrome/test/android/javatests/src/org/chromium/chrome/test/ChromeInstrumentationTestRunner.java
index 375b77b55635f06f7bcff8507ce08de5a8481cbb..78ee73654d52bd09abecaa9bf54d8f7026eeee26 100644
--- a/chrome/test/android/javatests/src/org/chromium/chrome/test/ChromeInstrumentationTestRunner.java
+++ b/chrome/test/android/javatests/src/org/chromium/chrome/test/ChromeInstrumentationTestRunner.java
@@ -103,16 +103,8 @@ public class ChromeInstrumentationTestRunner extends BaseChromiumInstrumentation
ChromeRestriction.RESTRICTION_TYPE_DAYDREAM)
|| TextUtils.equals(restriction,
ChromeRestriction.RESTRICTION_TYPE_NON_DAYDREAM)) {
- boolean isDaydream = isDaydreamReady();
- if (TextUtils.equals(restriction,
- ChromeRestriction.RESTRICTION_TYPE_DAYDREAM)
- && !isDaydream) {
- return true;
- } else if (TextUtils.equals(restriction,
- ChromeRestriction.RESTRICTION_TYPE_NON_DAYDREAM)
- && isDaydream) {
- return true;
- }
+ // TODO(crbug/671373): Re-enable vr instrumentation tests when they are safe.
+ return true;
}
return false;
}
« no previous file with comments | « chrome/common/features.gni ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698