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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl

Issue 2519893002: Stop dispatching encoded-data-length on each data chunk arrival (Closed)
Patch Set: PS5 again Created 4 years 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/inspector/InspectorInstrumentation.idl
diff --git a/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl b/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl
index dd80a9735dbe4cb3275da8dfcdbe8e90a2aaf956..b7277122eccdce619affc61e50c33da461b3a440 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl
+++ b/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl
@@ -165,7 +165,10 @@ class XMLHttpRequest;
void didReceiveResourceResponse([Keep] LocalFrame*, unsigned long identifier, DocumentLoader*, const ResourceResponse&, Resource*);
[Network]
- void didReceiveData([Keep] LocalFrame*, unsigned long identifier, const char* data, int dataLength, int encodedDataLength);
+ void didReceiveData([Keep] LocalFrame*, unsigned long identifier, const char* data, int dataLength);
+
+ [Network]
+ void didReceiveEncodedData([Keep] LocalFrame*, unsigned long identifier, int encodedDataLength);
dgozman 2016/11/30 18:02:17 didReceiveEncodedDataLength
yhirano 2016/12/01 10:33:10 Done.
[Network]
void didFinishLoading(LocalFrame* frame, unsigned long identifier, double finishTime, int64_t encodedDataLength);

Powered by Google App Engine
This is Rietveld 408576698