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

Unified Diff: third_party/WebKit/Source/core/html/URLRegistry.h

Issue 2258033002: Replace ASSERT()s with DCHECK*() in core/html/*.{cpp,h}. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Replace ASSERT()s with DCHECK*() in core/html/*.{cpp,h}. 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/URLRegistry.h
diff --git a/third_party/WebKit/Source/core/html/URLRegistry.h b/third_party/WebKit/Source/core/html/URLRegistry.h
index 77e94e0cb8c8c2be8c1bc4de8eb6bee05c76c0b3..63e7b53fa8e2e5f119f73118d2c208c9ecf140b8 100644
--- a/third_party/WebKit/Source/core/html/URLRegistry.h
+++ b/third_party/WebKit/Source/core/html/URLRegistry.h
@@ -54,8 +54,8 @@ public:
virtual void unregisterURL(const KURL&) = 0;
// These are optional APIs
- virtual URLRegistrable* lookup(const String&) { ASSERT_NOT_REACHED(); return nullptr; }
- virtual bool contains(const String&) { ASSERT_NOT_REACHED(); return false; }
+ virtual URLRegistrable* lookup(const String&) { NOTREACHED(); return nullptr; }
+ virtual bool contains(const String&) { NOTREACHED(); return false; }
};
} // namespace blink
« no previous file with comments | « third_party/WebKit/Source/core/html/TimeRanges.cpp ('k') | third_party/WebKit/Source/core/html/WindowNameCollection.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698