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

Unified Diff: third_party/WebKit/Source/core/layout/FragmentainerIterator.cpp

Issue 2770203002: Replace DCHECK with DCHECK_op and split some DCHECKs wherever necessary (Closed)
Patch Set: Add few more Created 3 years, 8 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 | third_party/WebKit/Source/core/layout/Grid.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/layout/FragmentainerIterator.cpp
diff --git a/third_party/WebKit/Source/core/layout/FragmentainerIterator.cpp b/third_party/WebKit/Source/core/layout/FragmentainerIterator.cpp
index f7b8e61cf21fb8a7db235a9dbf024a404e8ce4aa..c40046e239c05c82e13cdb780ae0cd6ab1fcaa9f 100644
--- a/third_party/WebKit/Source/core/layout/FragmentainerIterator.cpp
+++ b/third_party/WebKit/Source/core/layout/FragmentainerIterator.cpp
@@ -149,7 +149,7 @@ bool FragmentainerIterator::setFragmentainersOfInterest() {
if (m_endFragmentainerIndex > lastFragmentainerInClipRect)
m_endFragmentainerIndex = lastFragmentainerInClipRect;
}
- DCHECK(m_endFragmentainerIndex >= m_currentFragmentainerIndex);
+ DCHECK_GE(m_endFragmentainerIndex, m_currentFragmentainerIndex);
return true;
}
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/layout/Grid.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698