Index: chrome/android/javatests/src/org/chromium/chrome/browser/hardware_acceleration/IncognitoDocumentActivityHWATest.java |
diff --git a/chrome/android/javatests/src/org/chromium/chrome/browser/hardware_acceleration/IncognitoDocumentActivityHWATest.java b/chrome/android/javatests/src/org/chromium/chrome/browser/hardware_acceleration/IncognitoDocumentActivityHWATest.java |
new file mode 100644 |
index 0000000000000000000000000000000000000000..42ffa855d6ab18958daf170f3407cb2f9c50274a |
--- /dev/null |
+++ b/chrome/android/javatests/src/org/chromium/chrome/browser/hardware_acceleration/IncognitoDocumentActivityHWATest.java |
@@ -0,0 +1,39 @@ |
+// Copyright 2015 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.browser.hardware_acceleration; |
+ |
+import static org.chromium.base.test.util.Restriction.RESTRICTION_TYPE_LOW_END_DEVICE; |
+ |
+import android.test.suitebuilder.annotation.SmallTest; |
+ |
+import org.chromium.base.ApplicationStatus; |
+import org.chromium.base.test.util.Restriction; |
+import org.chromium.chrome.browser.document.DocumentModeTest; |
+import org.chromium.chrome.browser.document.IncognitoDocumentActivity; |
+import org.chromium.chrome.test.util.DisableInTabbedMode; |
+ |
+/** |
+ * Tests that IncognitoDocumentActivity is hardware accelerated only high-end devices. |
+ */ |
+@DisableInTabbedMode |
+public class IncognitoDocumentActivityHWATest extends DocumentModeTest { |
+ |
+ @SmallTest |
+ public void testHardwareAcceleration() throws Exception { |
+ Utils.assertHardwareAcceleration(startAndWaitActivity()); |
+ } |
+ |
+ @Restriction(RESTRICTION_TYPE_LOW_END_DEVICE) |
+ @SmallTest |
+ public void testNoRenderThread() throws Exception { |
+ startAndWaitActivity(); |
+ Utils.assertNoRenderThread(); |
+ } |
+ |
+ private IncognitoDocumentActivity startAndWaitActivity() throws Exception { |
+ launchViaViewIntent(true, URL_1, "Page 1"); |
+ return (IncognitoDocumentActivity) ApplicationStatus.getLastTrackedFocusedActivity(); |
+ } |
+} |