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

Unified Diff: Source/core/fileapi/FileReaderLoader.h

Issue 618583002: Correct data size argument type in resource loading path to unsigned (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add static_cast to RELEASE_ASSERT in AssociatedURLLoader::ClientAdapter::didReceiveData Created 6 years, 2 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
« no previous file with comments | « Source/core/fetch/ScriptResource.cpp ('k') | Source/core/fileapi/FileReaderLoader.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/fileapi/FileReaderLoader.h
diff --git a/Source/core/fileapi/FileReaderLoader.h b/Source/core/fileapi/FileReaderLoader.h
index e6528b566c5064b504101ec0c491f8e75cee29c1..055c11d0d9f22b8df842687f8e17261dd9d503cb 100644
--- a/Source/core/fileapi/FileReaderLoader.h
+++ b/Source/core/fileapi/FileReaderLoader.h
@@ -71,7 +71,7 @@ public:
// ThreadableLoaderClient
virtual void didReceiveResponse(unsigned long, const ResourceResponse&) OVERRIDE;
- virtual void didReceiveData(const char*, int) OVERRIDE;
+ virtual void didReceiveData(const char*, unsigned) OVERRIDE;
virtual void didFinishLoading(unsigned long, double) OVERRIDE;
virtual void didFail(const ResourceError&) OVERRIDE;
« no previous file with comments | « Source/core/fetch/ScriptResource.cpp ('k') | Source/core/fileapi/FileReaderLoader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698