| OLD | NEW |
| (Empty) |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #include "content/browser/gpu/compositor_util.h" | |
| 6 #include "content/test/content_browser_test.h" | |
| 7 | |
| 8 #if defined(OS_WIN) | |
| 9 #include "base/win/windows_version.h" | |
| 10 #endif | |
| 11 | |
| 12 namespace content { | |
| 13 | |
| 14 typedef ContentBrowserTest CompositorUtilTest; | |
| 15 | |
| 16 // Test that threaded compositing and FCM are in the expected mode on the bots | |
| 17 // for all platforms. | |
| 18 IN_PROC_BROWSER_TEST_F(CompositorUtilTest, CompositingModeAsExpected) { | |
| 19 enum CompositingMode { | |
| 20 DISABLED, | |
| 21 ENABLED, | |
| 22 THREADED, | |
| 23 } expected_mode = DISABLED; | |
| 24 #if defined(OS_ANDROID) || defined(USE_AURA) | |
| 25 expected_mode = THREADED; | |
| 26 #endif | |
| 27 | |
| 28 EXPECT_EQ(expected_mode == ENABLED || expected_mode == THREADED, | |
| 29 IsForceCompositingModeEnabled()); | |
| 30 EXPECT_EQ(expected_mode == THREADED, IsThreadedCompositingEnabled()); | |
| 31 } | |
| 32 | |
| 33 } | |
| OLD | NEW |