| Index: Source/core/inspector/InspectorInstrumentation.idl
|
| diff --git a/Source/core/inspector/InspectorInstrumentation.idl b/Source/core/inspector/InspectorInstrumentation.idl
|
| index b896315913e652c90571405277890d375af2ee40..601f221c7d14d4d5c09767b2a29150905c8b045d 100644
|
| --- a/Source/core/inspector/InspectorInstrumentation.idl
|
| +++ b/Source/core/inspector/InspectorInstrumentation.idl
|
| @@ -273,6 +273,15 @@ interface InspectorInstrumentation {
|
| void didFinishXHRLoading([Keep] ExecutionContext*, XMLHttpRequest* xhr, ThreadableLoaderClient* client, const AtomicString& method, const String& url);
|
|
|
| [Resource]
|
| + void willStartFetch(ExecutionContext*, ThreadableLoaderClient*);
|
| +
|
| + [Resource]
|
| + void didFailFetch(ExecutionContext*, ThreadableLoaderClient*);
|
| +
|
| + [Resource]
|
| + void didFinishFetch([Keep] ExecutionContext*, ThreadableLoaderClient*, const AtomicString& method, const String& url);
|
| +
|
| + [Resource]
|
| void scriptImported(ExecutionContext*, unsigned long identifier, const String& sourceString);
|
|
|
| [Debugger]
|
|
|