| Index: Source/core/inspector/InspectorInstrumentation.idl
|
| diff --git a/Source/core/inspector/InspectorInstrumentation.idl b/Source/core/inspector/InspectorInstrumentation.idl
|
| index d61434560df95f3503e03569e4c71bccb6aa7f5c..8da2a39d162f92ddb27ffed38d3bb3403c30634c 100644
|
| --- a/Source/core/inspector/InspectorInstrumentation.idl
|
| +++ b/Source/core/inspector/InspectorInstrumentation.idl
|
| @@ -280,12 +280,6 @@ interface InspectorInstrumentation {
|
| [Resource]
|
| void markResourceAsCached(Page*, unsigned long identifier);
|
|
|
| - [Timeline, Inline=FastReturn]
|
| - InspectorInstrumentationCookie willReceiveResourceData([Keep] LocalFrame*, unsigned long identifier, int length);
|
| -
|
| - [Timeline, Inline=FastReturn]
|
| - void didReceiveResourceData(const InspectorInstrumentationCookie&);
|
| -
|
| [Timeline, Resource, Console] // Console should come AFTER Resource notification, front-end relies on this.
|
| void didReceiveResourceResponse([Keep] LocalFrame*, unsigned long identifier, DocumentLoader*, const ResourceResponse&, ResourceLoader*);
|
|
|
| @@ -298,8 +292,8 @@ interface InspectorInstrumentation {
|
| [Inline=Forward]
|
| void continueWithPolicyIgnore(LocalFrame* frame, DocumentLoader* loader, unsigned long identifier, const ResourceResponse& r);
|
|
|
| - [Resource]
|
| - void didReceiveData(LocalFrame*, unsigned long identifier, const char* data, int dataLength, int encodedDataLength);
|
| + [Timeline, Resource, Inline=FastReturn]
|
| + void didReceiveData([Keep] LocalFrame*, unsigned long identifier, const char* data, int dataLength, int encodedDataLength);
|
|
|
| [Timeline, Resource]
|
| void didFinishLoading(LocalFrame* frame, unsigned long identifier, DocumentLoader*, double finishTime, int64_t encodedDataLength);
|
|
|