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

Unified Diff: cc/resources/tile_manager_unittest.cc

Issue 408233002: cc: Disable eviction priority queue with occlusion on windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 5 months 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/resources/tile_manager_unittest.cc
diff --git a/cc/resources/tile_manager_unittest.cc b/cc/resources/tile_manager_unittest.cc
index 3dba49b45558c24c372fd64c4f609861f8d9f3cc..c56ffd3bbec3c760c4debc57d19cdf75f5ef8bd8 100644
--- a/cc/resources/tile_manager_unittest.cc
+++ b/cc/resources/tile_manager_unittest.cc
@@ -960,7 +960,14 @@ TEST_F(TileManagerTileIteratorTest, EvictionTileIterator) {
EXPECT_EQ(all_tiles, new_content_tiles);
}
-TEST_F(TileManagerTileIteratorTest, EvictionTileIteratorWithOcclusion) {
+#if defined(OS_WIN)
+#define MAYBE_EvictionTileIteratorWithOcclusion \
+ DISABLED_EvictionTileIteratorWithOcclusion
+#else
+#define MAYBE_EvictionTileIteratorWithOcclusion \
+ EvictionTileIteratorWithOcclusion
+#endif
+TEST_F(TileManagerTileIteratorTest, MAYBE_EvictionTileIteratorWithOcclusion) {
gfx::Size tile_size(102, 102);
gfx::Size layer_bounds(1000, 1000);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698