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

Unified Diff: Source/core/xml/XMLHttpRequest.h

Issue 562563003: [XHR] Accept data on didReceiveData call even if responseType is set to Blob (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 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/xml/XMLHttpRequest.h
diff --git a/Source/core/xml/XMLHttpRequest.h b/Source/core/xml/XMLHttpRequest.h
index f254b160ab04d5b37c351009e02e881876534b1f..d86d83bbea564c64d84762ba88faf7e39ef37fea 100644
--- a/Source/core/xml/XMLHttpRequest.h
+++ b/Source/core/xml/XMLHttpRequest.h
@@ -264,7 +264,8 @@ private:
RefPtrWillBeMember<DocumentParser> m_responseDocumentParser;
RefPtr<SharedBuffer> m_binaryResponseBuilder;
- long long m_downloadedBlobLength;
+ bool m_downloadingToFile;
+ long long m_lengthDownloadedToFile;
RefPtr<ArrayBuffer> m_responseArrayBuffer;

Powered by Google App Engine
This is Rietveld 408576698