Index: content/browser/gpu/compositor_util_browsertest.cc |
diff --git a/content/browser/gpu/compositor_util_browsertest.cc b/content/browser/gpu/compositor_util_browsertest.cc |
index 009ef36c526eb1720713e28acbd3b552372595c4..1f3b9f3f576a9668388fd33fbcb98128a08a4f8b 100644 |
--- a/content/browser/gpu/compositor_util_browsertest.cc |
+++ b/content/browser/gpu/compositor_util_browsertest.cc |
@@ -15,19 +15,37 @@ |
typedef ContentBrowserTest CompositorUtilTest; |
-// Test that compositing is in the expected mode on the bots for all platforms. |
+// Test that threaded compositing and FCM are in the expected mode on the bots |
+// for all platforms. |
IN_PROC_BROWSER_TEST_F(CompositorUtilTest, CompositingModeAsExpected) { |
enum CompositingMode { |
- DIRECT, |
- DELEGATED, |
- } expected_mode = DIRECT; |
-#if defined(USE_AURA) || defined(OS_ANDROID) |
+ DISABLED, |
+ ENABLED, |
+ THREADED, // Implies FCM |
+ DELEGATED, // Implies threaded |
+ } expected_mode = DISABLED; |
+#if defined(USE_AURA) |
+ expected_mode = DELEGATED; |
+#elif defined(OS_ANDROID) |
expected_mode = DELEGATED; |
#elif defined(OS_MACOSX) |
- expected_mode = DIRECT; |
+ expected_mode = THREADED; |
+ // Lion and SnowLeopard have compositing blacklisted when using the Apple |
+ // software renderer, so results will vary depending if this test is being |
+ // run in a VM versus actual hardware. |
+ // http://crbug.com/230931 |
+ if (base::mac::IsOSLionOrEarlier()) |
+ return; |
+#elif defined(OS_WIN) |
+ if (base::win::GetVersion() >= base::win::VERSION_VISTA) |
+ expected_mode = THREADED; |
#endif |
- EXPECT_EQ(expected_mode == DELEGATED, IsDelegatedRendererEnabled()); |
+ EXPECT_EQ(expected_mode == THREADED || |
+ expected_mode == DELEGATED, |
+ IsThreadedCompositingEnabled()); |
+ EXPECT_EQ(expected_mode == DELEGATED, |
+ IsDelegatedRendererEnabled()); |
} |
} |