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

Side by Side Diff: Source/core/xml/XMLHttpRequestUpload.cpp

Issue 79953004: Improve fidelity of XHR progress events. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Avoid using default arguments Created 7 years 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 return m_xmlHttpRequest->executionContext(); 53 return m_xmlHttpRequest->executionContext();
54 } 54 }
55 55
56 void XMLHttpRequestUpload::dispatchProgressEvent(unsigned long long bytesSent, u nsigned long long totalBytesToBeSent) 56 void XMLHttpRequestUpload::dispatchProgressEvent(unsigned long long bytesSent, u nsigned long long totalBytesToBeSent)
57 { 57 {
58 m_lastBytesSent = bytesSent; 58 m_lastBytesSent = bytesSent;
59 m_lastTotalBytesToBeSent = totalBytesToBeSent; 59 m_lastTotalBytesToBeSent = totalBytesToBeSent;
60 dispatchEvent(XMLHttpRequestProgressEvent::create(EventTypeNames::progress, true, bytesSent, totalBytesToBeSent)); 60 dispatchEvent(XMLHttpRequestProgressEvent::create(EventTypeNames::progress, true, bytesSent, totalBytesToBeSent));
61 } 61 }
62 62
63 void XMLHttpRequestUpload::dispatchEventAndLoadEnd(PassRefPtr<Event> event) 63 void XMLHttpRequestUpload::dispatchEventAndLoadEnd(const AtomicString& type, boo l lengthComputable, unsigned long long bytesSent, unsigned long long total)
64 { 64 {
65 ASSERT(event->type() == EventTypeNames::load || event->type() == EventTypeNa mes::abort || event->type() == EventTypeNames::error || event->type() == EventTy peNames::timeout); 65 ASSERT(type == EventTypeNames::load || type == EventTypeNames::abort || type == EventTypeNames::error || type == EventTypeNames::timeout);
66 66
67 dispatchEvent(event); 67 if (!lengthComputable && !bytesSent)
68 dispatchEvent(XMLHttpRequestProgressEvent::create(EventTypeNames::loadend)); 68 bytesSent = m_lastBytesSent;
69
70 if (!lengthComputable && !total) {
71 total = m_lastTotalBytesToBeSent;
72 if (total >= 0 && bytesSent <= total)
73 lengthComputable = true;
74 }
75
76 dispatchEvent(XMLHttpRequestProgressEvent::create(type, lengthComputable, by tesSent, total));
77 dispatchEvent(XMLHttpRequestProgressEvent::create(EventTypeNames::loadend, l engthComputable, bytesSent, total));
69 } 78 }
70 79
71 void XMLHttpRequestUpload::handleRequestError(const AtomicString& type) 80 void XMLHttpRequestUpload::handleRequestError(const AtomicString& type)
72 { 81 {
73 dispatchEvent(XMLHttpRequestProgressEvent::create(EventTypeNames::progress, true, m_lastBytesSent, m_lastTotalBytesToBeSent)); 82 dispatchEvent(XMLHttpRequestProgressEvent::create(EventTypeNames::progress, true, m_lastBytesSent, m_lastTotalBytesToBeSent));
tyoshino (SeeGerritForStatus) 2013/11/25 08:06:15 looks we should have some flag indicating we've re
sof 2013/11/25 11:38:24 I think it is quite reasonable to derive lengthCom
74 dispatchEventAndLoadEnd(XMLHttpRequestProgressEvent::create(type)); 83 dispatchEventAndLoadEnd(type, true, m_lastBytesSent, m_lastTotalBytesToBeSen t);
75 } 84 }
76 85
77 } // namespace WebCore 86 } // namespace WebCore
OLDNEW
« Source/core/xml/XMLHttpRequestUpload.h ('K') | « Source/core/xml/XMLHttpRequestUpload.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698