Index: gpu/command_buffer/tests/gl_lose_context_chromium_unittest.cc |
diff --git a/gpu/command_buffer/tests/gl_lose_context_chromium_unittest.cc b/gpu/command_buffer/tests/gl_lose_context_chromium_unittest.cc |
index 92024378825853dfd5f70c50babf34d0952342cf..9e820f3f9458686b5c9614cc377e2db0ad0422a3 100644 |
--- a/gpu/command_buffer/tests/gl_lose_context_chromium_unittest.cc |
+++ b/gpu/command_buffer/tests/gl_lose_context_chromium_unittest.cc |
@@ -55,16 +55,18 @@ TEST_F(GLLoseContextTest, ShareGroup) { |
GLTestHelper::kCheckClearValue, GLTestHelper::kCheckClearValue, |
}; |
// Expect the read will fail. |
- EXPECT_TRUE(GLTestHelper::CheckPixels(0, 0, 1, 1, 0, expected_no_draw)); |
+ EXPECT_TRUE( |
+ GLTestHelper::CheckPixels(0, 0, 1, 1, 0, expected_no_draw, nullptr)); |
gl1b_.MakeCurrent(); |
// Expect the read will fail. |
- EXPECT_TRUE(GLTestHelper::CheckPixels(0, 0, 1, 1, 0, expected_no_draw)); |
+ EXPECT_TRUE( |
+ GLTestHelper::CheckPixels(0, 0, 1, 1, 0, expected_no_draw, nullptr)); |
gl2_.MakeCurrent(); |
uint8_t expected_draw[] = { |
0, 0, 0, 0, |
}; |
// Expect the read will succeed. |
- EXPECT_TRUE(GLTestHelper::CheckPixels(0, 0, 1, 1, 0, expected_draw)); |
+ EXPECT_TRUE(GLTestHelper::CheckPixels(0, 0, 1, 1, 0, expected_draw, nullptr)); |
} |
} // namespace gpu |