Index: cc/resources/texture_mailbox.cc |
diff --git a/cc/resources/texture_mailbox.cc b/cc/resources/texture_mailbox.cc |
index 7e4dd29708ccd4e61b3dafcc2306a4be1cdfccef..f02f31e50b4244bc451772eaca63e25e886d723b 100644 |
--- a/cc/resources/texture_mailbox.cc |
+++ b/cc/resources/texture_mailbox.cc |
@@ -38,7 +38,7 @@ TextureMailbox::TextureMailbox(const gpu::Mailbox& mailbox, |
size_in_pixels_(size_in_pixels), |
allow_overlay_(allow_overlay), |
nearest_neighbor_(false) { |
- DCHECK_IMPLIES(allow_overlay, !size_in_pixels.IsEmpty()); |
+ DCHECK(!allow_overlay || !size_in_pixels.IsEmpty()); |
} |
TextureMailbox::TextureMailbox(SharedBitmap* shared_bitmap, |