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

Unified Diff: third_party/WebKit/Source/core/loader/appcache/ApplicationCacheHost.h

Issue 1571233003: Fix errors caused by unsafe conversions to/from size_t (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: improved ALLOW_NUMERIC_ARG_TYPES_PROMOTABLE_TO Created 4 years, 11 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/loader/appcache/ApplicationCacheHost.h
diff --git a/third_party/WebKit/Source/core/loader/appcache/ApplicationCacheHost.h b/third_party/WebKit/Source/core/loader/appcache/ApplicationCacheHost.h
index 0d419bc5feada54d250e7f16ce000e62484e9d94..fa82520bb82d8846ae5a9757b8a5d20625b535c4 100644
--- a/third_party/WebKit/Source/core/loader/appcache/ApplicationCacheHost.h
+++ b/third_party/WebKit/Source/core/loader/appcache/ApplicationCacheHost.h
@@ -115,7 +115,7 @@ namespace blink {
void willStartLoadingMainResource(ResourceRequest&);
void didReceiveResponseForMainResource(const ResourceResponse&);
- void mainResourceDataReceived(const char* data, unsigned length);
+ void mainResourceDataReceived(const char* data, size_t length);
void finishedLoadingMainResource();
void failedLoadingMainResource();

Powered by Google App Engine
This is Rietveld 408576698