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; |