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

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

Issue 79953004: Improve fidelity of XHR progress events. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Make test stable Created 7 years, 1 month 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
« no previous file with comments | « Source/core/xml/XMLHttpRequestProgressEventThrottle.cpp ('k') | Source/core/xml/XMLHttpRequestUpload.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/xml/XMLHttpRequestUpload.h
diff --git a/Source/core/xml/XMLHttpRequestUpload.h b/Source/core/xml/XMLHttpRequestUpload.h
index b9f5ae8cb5f47d40d9434920b7755cc33f1186b8..d7a63da84c97d5c643bcd814b9487cee318aa0a0 100644
--- a/Source/core/xml/XMLHttpRequestUpload.h
+++ b/Source/core/xml/XMLHttpRequestUpload.h
@@ -58,10 +58,10 @@ public:
virtual const AtomicString& interfaceName() const OVERRIDE;
virtual ExecutionContext* executionContext() const OVERRIDE;
- void dispatchEventAndLoadEnd(PassRefPtr<Event>);
- void dispatchProgressEvent(unsigned long long bytesSent, unsigned long long totalBytesToBeSent);
+ void dispatchEventAndLoadEnd(const AtomicString&, bool, unsigned long long, unsigned long long);
+ void dispatchProgressEvent(unsigned long long, unsigned long long);
- void handleRequestError(const AtomicString& type);
+ void handleRequestError(const AtomicString&);
private:
explicit XMLHttpRequestUpload(XMLHttpRequest*);
« no previous file with comments | « Source/core/xml/XMLHttpRequestProgressEventThrottle.cpp ('k') | Source/core/xml/XMLHttpRequestUpload.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698