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

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

Issue 23444058: Use downloadToFile option when XHR downloads a Blob (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 3 months 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: 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);

Powered by Google App Engine
This is Rietveld 408576698