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

Unified Diff: content/common/cc_messages_unittest.cc

Issue 11871008: cc: Stop using drawableContentRect for occlusion. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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 | « content/common/cc_messages.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/cc_messages_unittest.cc
diff --git a/content/common/cc_messages_unittest.cc b/content/common/cc_messages_unittest.cc
index efa840d4a2bf7100abddd55bc861ae78e7527186..f452a6ba7f508070edaf7f58596012fee6e835f1 100644
--- a/content/common/cc_messages_unittest.cc
+++ b/content/common/cc_messages_unittest.cc
@@ -48,7 +48,6 @@ class CCMessagesTest : public testing::Test {
void Compare(const SharedQuadState* a, const SharedQuadState* b) {
EXPECT_EQ(a->content_to_target_transform, b->content_to_target_transform);
EXPECT_EQ(a->visible_content_rect, b->visible_content_rect);
- EXPECT_EQ(a->clipped_rect_in_target, b->clipped_rect_in_target);
EXPECT_EQ(a->clip_rect, b->clip_rect);
EXPECT_EQ(a->is_clipped, b->is_clipped);
EXPECT_EQ(a->opacity, b->opacity);
@@ -239,7 +238,6 @@ TEST_F(CCMessagesTest, AllQuads) {
shared_state1_in->SetAll(arbitrary_matrix,
arbitrary_rect1,
arbitrary_rect2,
- arbitrary_rect3,
arbitrary_bool1,
arbitrary_float1);
scoped_ptr<SharedQuadState> shared_state1_cmp = shared_state1_in->Copy();
@@ -302,7 +300,6 @@ TEST_F(CCMessagesTest, AllQuads) {
shared_state2_in->SetAll(arbitrary_matrix,
arbitrary_rect2,
arbitrary_rect3,
- arbitrary_rect1,
arbitrary_bool1,
arbitrary_float2);
scoped_ptr<SharedQuadState> shared_state2_cmp = shared_state2_in->Copy();
@@ -311,7 +308,6 @@ TEST_F(CCMessagesTest, AllQuads) {
shared_state3_in->SetAll(arbitrary_matrix,
arbitrary_rect3,
arbitrary_rect1,
- arbitrary_rect2,
arbitrary_bool1,
arbitrary_float3);
scoped_ptr<SharedQuadState> shared_state3_cmp = shared_state3_in->Copy();
« no previous file with comments | « content/common/cc_messages.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698