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

Unified Diff: third_party/WebKit/Source/web/LocalFileSystemClient.cpp

Issue 1878493002: ASSERT_NOT_REACHED() -> NOTREACHED() in web. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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/web/LocalFileSystemClient.cpp
diff --git a/third_party/WebKit/Source/web/LocalFileSystemClient.cpp b/third_party/WebKit/Source/web/LocalFileSystemClient.cpp
index a48522ce72bcf0597b45968ccec2be9d2f35609a..a09120beca5c8a46404d77924b9f2cab5084fa2d 100644
--- a/third_party/WebKit/Source/web/LocalFileSystemClient.cpp
+++ b/third_party/WebKit/Source/web/LocalFileSystemClient.cpp
@@ -55,7 +55,7 @@ bool LocalFileSystemClient::requestFileSystemAccessSync(ExecutionContext* contex
{
DCHECK(context);
if (context->isDocument()) {
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return false;
}
@@ -67,7 +67,7 @@ void LocalFileSystemClient::requestFileSystemAccessAsync(ExecutionContext* conte
{
DCHECK(context);
if (!context->isDocument()) {
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return;
}
« no previous file with comments | « third_party/WebKit/Source/web/DateTimeChooserImpl.cpp ('k') | third_party/WebKit/Source/web/PageWidgetDelegate.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698