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

Unified Diff: third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.h

Issue 1690503002: Rename XMLHttpRequestProgressEventThrottle to ProgressEventThrottle (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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: third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.h
diff --git a/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.h b/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.h
index 60c51e58e7955f4f0d1fe560eb959ebca697477e..103c813e39fe0b558f8a2c3fc8bc3bc838d54b2e 100644
--- a/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.h
+++ b/third_party/WebKit/Source/core/xmlhttprequest/XMLHttpRequest.h
@@ -27,8 +27,8 @@
#include "core/dom/ActiveDOMObject.h"
#include "core/dom/DocumentParserClient.h"
#include "core/loader/ThreadableLoaderClient.h"
+#include "core/xmlhttprequest/ProgressEventThrottle.h"
#include "core/xmlhttprequest/XMLHttpRequestEventTarget.h"
-#include "core/xmlhttprequest/XMLHttpRequestProgressEventThrottle.h"
#include "platform/heap/Handle.h"
#include "platform/network/EncodedFormData.h"
#include "platform/network/HTTPHeaderMap.h"
@@ -250,7 +250,7 @@ private:
void handleRequestError(ExceptionCode, const AtomicString&, long long, long long);
- XMLHttpRequestProgressEventThrottle& progressEventThrottle();
+ ProgressEventThrottle& progressEventThrottle();
Member<XMLHttpRequestUpload> m_upload;
@@ -289,7 +289,7 @@ private:
// any.
ExceptionCode m_exceptionCode;
- Member<XMLHttpRequestProgressEventThrottle> m_progressEventThrottle;
+ Member<ProgressEventThrottle> m_progressEventThrottle;
// An enum corresponding to the allowed string values for the responseType attribute.
ResponseTypeCode m_responseTypeCode;

Powered by Google App Engine
This is Rietveld 408576698