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

Unified Diff: third_party/WebKit/Source/core/layout/HitTestRequest.h

Issue 2770123003: Replace ASSERT with DCHECK in core/layout/ excluding subdirs (Closed)
Patch Set: Split some DCHECKs and add DCHECK_ops wherever possible 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
Index: third_party/WebKit/Source/core/layout/HitTestRequest.h
diff --git a/third_party/WebKit/Source/core/layout/HitTestRequest.h b/third_party/WebKit/Source/core/layout/HitTestRequest.h
index 1fa060cc8d78881d20c31a4099154f7005a81552..4f043fdcf43bf8c2a4a58b25b7393994cc49c99a 100644
--- a/third_party/WebKit/Source/core/layout/HitTestRequest.h
+++ b/third_party/WebKit/Source/core/layout/HitTestRequest.h
@@ -56,7 +56,7 @@ class HitTestRequest {
HitTestRequest(HitTestRequestType requestType) : m_requestType(requestType) {
// Penetrating lists should also be list-based.
- ASSERT(!(requestType & PenetratingList) || (requestType & ListBased));
+ DCHECK(!(requestType & PenetratingList) || (requestType & ListBased));
}
bool readOnly() const { return m_requestType & ReadOnly; }
« no previous file with comments | « third_party/WebKit/Source/core/layout/FloatingObjects.cpp ('k') | third_party/WebKit/Source/core/layout/HitTestResult.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698