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

Unified Diff: third_party/WebKit/Source/modules/fetch/FetchManager.cpp

Issue 1699983002: Editing: Make |EditingState*| arguments of CompositeEditCommand::moveParagraph* mandatory. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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/modules/fetch/FetchManager.cpp
diff --git a/third_party/WebKit/Source/modules/fetch/FetchManager.cpp b/third_party/WebKit/Source/modules/fetch/FetchManager.cpp
index 4050ba6e64314b4ad9f965e80af9be82972055b2..e402fe9186df2538bf99e35eb4d2ad8f009b830b 100644
--- a/third_party/WebKit/Source/modules/fetch/FetchManager.cpp
+++ b/third_party/WebKit/Source/modules/fetch/FetchManager.cpp
@@ -263,7 +263,7 @@ void FetchManager::Loader::didReceiveResponse(unsigned long, const ResourceRespo
tainting = FetchRequestData::CORSTainting;
break;
case WebURLRequest::FetchRequestModeNavigate:
- RELEASE_ASSERT_NOT_REACHED();
+ RELEASE_NOTREACHED();
break;
}
}
@@ -286,7 +286,7 @@ void FetchManager::Loader::didReceiveResponse(unsigned long, const ResourceRespo
// When ServiceWorker respond to the request from fetch() with an
// error response, FetchManager::Loader::didFail() must be called
// instead.
- RELEASE_ASSERT_NOT_REACHED();
+ RELEASE_NOTREACHED();
break;
}
}

Powered by Google App Engine
This is Rietveld 408576698