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

Unified Diff: third_party/WebKit/Source/core/fileapi/FileReaderLoaderClient.h

Issue 2804403003: Replace ASSERT, ASSERT_NOT_REACHED, and RELEASE_ASSERT in core/fileapi (Closed)
Patch Set: fix Created 3 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/core/fileapi/FileReaderLoaderClient.h
diff --git a/third_party/WebKit/Source/core/fileapi/FileReaderLoaderClient.h b/third_party/WebKit/Source/core/fileapi/FileReaderLoaderClient.h
index d669e0c568f991445519859d946ecdedfaac640d..835bae64dcbbc198633145d3657fca06ea30d95b 100644
--- a/third_party/WebKit/Source/core/fileapi/FileReaderLoaderClient.h
+++ b/third_party/WebKit/Source/core/fileapi/FileReaderLoaderClient.h
@@ -43,11 +43,11 @@ class CORE_EXPORT FileReaderLoaderClient {
virtual void DidStartLoading() = 0;
// Clients must implement this method if they are using any ReadType except
// ReadByClient.
- virtual void DidReceiveData() { ASSERT_NOT_REACHED(); }
+ virtual void DidReceiveData() { NOTREACHED(); }
// Clients must implement this method if they are using the ReadByClient
// ReadType.
virtual void DidReceiveDataForClient(const char* data, unsigned data_length) {
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
virtual void DidFinishLoading() = 0;
virtual void DidFail(FileError::ErrorCode) = 0;
« no previous file with comments | « third_party/WebKit/Source/core/fileapi/FileReaderLoader.cpp ('k') | third_party/WebKit/Source/core/fileapi/FileReaderSync.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698