Chromium Code Reviews| Index: Source/core/inspector/InspectorInstrumentation.idl |
| diff --git a/Source/core/inspector/InspectorInstrumentation.idl b/Source/core/inspector/InspectorInstrumentation.idl |
| index eadbef43986e560e3f0dcd5a25bdd9c0b6f58fa1..008fbdb9b56d61f36fe352242779e0e60fb3480c 100644 |
| --- a/Source/core/inspector/InspectorInstrumentation.idl |
| +++ b/Source/core/inspector/InspectorInstrumentation.idl |
| @@ -282,6 +282,9 @@ interface InspectorInstrumentation { |
| [Resource] |
| void didReceiveData(Frame*, unsigned long identifier, const char* data, int dataLength, int encodedDataLength); |
| + [Resource] |
| + void didReceiveDataWithoutData(Frame*, unsigned long identifier, int dataLength, int encodedDataLength); |
|
eustas
2013/09/19 04:52:37
The method name doesn't sound good.
Why don't reu
yusukesuzuki
2013/09/19 05:13:58
Since didDownloadData always has no data, I think
yusukesuzuki
2013/09/19 05:33:06
Is it more preferable reusing "didReceiveData"?
yusukesuzuki
2013/09/19 15:41:21
Done. Thanks for your suggestion.
|
| + |
| [Timeline, Resource] |
| void didFinishLoading(Frame* frame, unsigned long identifier, DocumentLoader*, double finishTime); |