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

Unified Diff: Source/core/fetch/ScriptResource.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: Created 6 years, 3 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: Source/core/fetch/ScriptResource.h
diff --git a/Source/core/fetch/ScriptResource.h b/Source/core/fetch/ScriptResource.h
index 351ece2f53d58c4909dcb26dfb02a9fe72ca7ed6..7d90f20693431b09fc27da5c4e3aebcf1508e901 100644
--- a/Source/core/fetch/ScriptResource.h
+++ b/Source/core/fetch/ScriptResource.h
@@ -50,7 +50,7 @@ public:
virtual ~ScriptResource();
virtual void didAddClient(ResourceClient*) OVERRIDE;
- virtual void appendData(const char*, int) OVERRIDE;
+ virtual void appendData(const char*, unsigned) OVERRIDE;
const String& script();

Powered by Google App Engine
This is Rietveld 408576698