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

Unified Diff: third_party/WebKit/Source/platform/graphics/paint/PaintController.cpp

Issue 2804213002: Fail even in release mode when under-invalidation is being checked (Closed)
Patch Set: none 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/platform/graphics/paint/PaintController.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/paint/PaintController.cpp b/third_party/WebKit/Source/platform/graphics/paint/PaintController.cpp
index ac49b8ada5618d180554bfaf35424a13018f422f..10e86d553b372aba64baf2dbbeb81a81c3decbaa 100644
--- a/third_party/WebKit/Source/platform/graphics/paint/PaintController.cpp
+++ b/third_party/WebKit/Source/platform/graphics/paint/PaintController.cpp
@@ -149,13 +149,13 @@ void PaintController::addCachedSubsequence(const DisplayItemClient& client,
if (!markers) {
showSequenceUnderInvalidationError(
"under-invalidation : unexpected subsequence", client, start, end);
- DCHECK(false);
+ CHECK(false);
}
if (markers->end - markers->start != end - start) {
showSequenceUnderInvalidationError(
"under-invalidation: new subsequence wrong length", client, start,
end);
- DCHECK(false);
+ CHECK(false);
}
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698