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

Unified Diff: third_party/WebKit/Source/core/dom/Range.cpp

Issue 2401523002: Replace ASSERT family with DCHECK and so on in core/dom/. (Closed)
Patch Set: Created 4 years, 2 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/dom/Range.cpp
diff --git a/third_party/WebKit/Source/core/dom/Range.cpp b/third_party/WebKit/Source/core/dom/Range.cpp
index bd11faa145d42f510a0952c165df636f8bfec8a6..e10fad1ec9cf5b42806ab0343aadb623f0e7792e 100644
--- a/third_party/WebKit/Source/core/dom/Range.cpp
+++ b/third_party/WebKit/Source/core/dom/Range.cpp
@@ -362,7 +362,7 @@ short Range::compareBoundaryPoints(unsigned how,
return compareBoundaryPoints(m_start, sourceRange->m_end, exceptionState);
}
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return 0;
}
@@ -1107,7 +1107,7 @@ Node* Range::checkNodeWOffset(Node* n,
return childBefore;
}
}
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return nullptr;
}
« no previous file with comments | « third_party/WebKit/Source/core/dom/PseudoElementData.h ('k') | third_party/WebKit/Source/core/dom/RawDataDocumentParser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698