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

Unified Diff: third_party/WebKit/Source/core/loader/appcache/ApplicationCache.cpp

Issue 2327643003: Replace ASSERT*() with DCHECK*() in core/fetch/ and core/loader/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 3 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/loader/appcache/ApplicationCache.cpp
diff --git a/third_party/WebKit/Source/core/loader/appcache/ApplicationCache.cpp b/third_party/WebKit/Source/core/loader/appcache/ApplicationCache.cpp
index 5ad0cb75439cebaf48b0b0ad7f0ad4da15c8e3c1..6cca2812406f0b2694fd6a7745b8c0b1f92a8083 100644
--- a/third_party/WebKit/Source/core/loader/appcache/ApplicationCache.cpp
+++ b/third_party/WebKit/Source/core/loader/appcache/ApplicationCache.cpp
@@ -130,7 +130,7 @@ const AtomicString& ApplicationCache::toEventType(ApplicationCacheHost::EventID
case ApplicationCacheHost::kObsoleteEvent:
return EventTypeNames::obsolete;
}
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return EventTypeNames::error;
}

Powered by Google App Engine
This is Rietveld 408576698