OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 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 #elif defined(OS_WIN) |
| 27 if (base::win::GetVersion() >= base::win::VERSION_VISTA) |
| 28 expected_mode = ENABLED; |
| 29 #endif |
| 30 |
| 31 EXPECT_EQ(expected_mode == ENABLED || expected_mode == THREADED, |
| 32 IsForceCompositingModeEnabled()); |
| 33 EXPECT_EQ(expected_mode == THREADED, IsThreadedCompositingEnabled()); |
| 34 } |
| 35 |
| 36 } |
OLD | NEW |