Chromium Code Reviews| 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); |