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

Unified Diff: cc/trees/occlusion_tracker_perftest.cc

Issue 2051343002: Make various gfx classes more amenable to use as compile-time constants. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Compile and test fixes Created 4 years, 6 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 | « cc/test/layer_test_common.cc ('k') | ui/gfx/geometry/box_f.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/trees/occlusion_tracker_perftest.cc
diff --git a/cc/trees/occlusion_tracker_perftest.cc b/cc/trees/occlusion_tracker_perftest.cc
index 867544fcce5f82554c882f18d8f50ffaed24a3b7..1550b76390385f05d0cd549b1827d9a266c7f92a 100644
--- a/cc/trees/occlusion_tracker_perftest.cc
+++ b/cc/trees/occlusion_tracker_perftest.cc
@@ -127,7 +127,7 @@ TEST_F(OcclusionTrackerPerfTest, UnoccludedContentRect_FullyOccluded) {
bool expect_empty =
query_content_rect.right() <= viewport_rect.width() &&
query_content_rect.bottom() + 96 <= viewport_rect.height();
- CHECK_EQ(expect_empty, unoccluded.IsEmpty())
+ ASSERT_EQ(expect_empty, unoccluded.IsEmpty())
<< query_content_rect.ToString();
}
}
@@ -188,7 +188,7 @@ TEST_F(OcclusionTrackerPerfTest, UnoccludedContentRect_10OpaqueLayers) {
LayerIteratorPosition pos = begin;
tracker.EnterLayer(pos);
tracker.LeaveLayer(pos);
-
+/* This block doesn't seem to do anything, missing part of the loop body?
Peter Kasting 2016/06/10 05:50:06 Dana, I think you wrote this, want to comment on w
gfx::Transform transform_to_target;
transform_to_target.Translate(0, 96);
@@ -200,12 +200,13 @@ TEST_F(OcclusionTrackerPerfTest, UnoccludedContentRect_10OpaqueLayers) {
gfx::Rect query_content_rect(x, y, 256, 256);
gfx::Rect unoccluded =
occlusion.GetUnoccludedContentRect(query_content_rect);
+ occlusion.GetUnoccludedContentRect(query_content_rect);
Peter Kasting 2016/06/10 05:50:06 Oops, ignore this typo line
}
}
timer_.NextLap();
} while (!timer_.HasTimeLimitExpired());
-
+*/
++begin;
LayerIteratorPosition next = begin;
EXPECT_EQ(active_tree()->root_layer(), next.current_layer);
« no previous file with comments | « cc/test/layer_test_common.cc ('k') | ui/gfx/geometry/box_f.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698