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

Unified Diff: third_party/WebKit/Source/core/html/imports/HTMLImportChild.h

Issue 2264483002: Replace ASSERT()s with DCHECK*() in core/html/imports/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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/html/imports/HTMLImportChild.h
diff --git a/third_party/WebKit/Source/core/html/imports/HTMLImportChild.h b/third_party/WebKit/Source/core/html/imports/HTMLImportChild.h
index 9de5cfe041ed8c1929ff99ae736d9ca928a75216..9b4cdae8d34e516a4c94382b552213b1b4f1677f 100644
--- a/third_party/WebKit/Source/core/html/imports/HTMLImportChild.h
+++ b/third_party/WebKit/Source/core/html/imports/HTMLImportChild.h
@@ -93,7 +93,7 @@ private:
inline HTMLImportChild* toHTMLImportChild(HTMLImport* import)
{
- ASSERT(!import || !import->isRoot());
+ DCHECK(!import || !import->isRoot());
return static_cast<HTMLImportChild*>(import);
}

Powered by Google App Engine
This is Rietveld 408576698