| 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 dc050fa44549247c97ab8c183ae274ec236f0fb6..1a6f9597f5ca2092c20ac9ccbae2e3bc5591e001 100644
|
| --- a/third_party/WebKit/Source/core/fileapi/FileReaderLoaderClient.h
|
| +++ b/third_party/WebKit/Source/core/fileapi/FileReaderLoaderClient.h
|
| @@ -41,9 +41,11 @@ class CORE_EXPORT FileReaderLoaderClient {
|
| virtual ~FileReaderLoaderClient() {}
|
|
|
| virtual void didStartLoading() = 0;
|
| - // Clients must implement this method if they are using any ReadType except ReadByClient.
|
| + // Clients must implement this method if they are using any ReadType except
|
| + // ReadByClient.
|
| virtual void didReceiveData() { ASSERT_NOT_REACHED(); }
|
| - // Clients must implement this method if they are using the ReadByClient ReadType.
|
| + // Clients must implement this method if they are using the ReadByClient
|
| + // ReadType.
|
| virtual void didReceiveDataForClient(const char* data, unsigned dataLength) {
|
| ASSERT_NOT_REACHED();
|
| }
|
|
|