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

Unified Diff: third_party/WebKit/Source/core/loader/PingLoader.cpp

Issue 2540023003: Dispatch encoded_data_length separately in content/child (Closed)
Patch Set: fix Created 4 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/loader/PingLoader.cpp
diff --git a/third_party/WebKit/Source/core/loader/PingLoader.cpp b/third_party/WebKit/Source/core/loader/PingLoader.cpp
index accfcbc4b80265700e63ddc5af1443ec6d6fb128..20abd863e563602e177ca6ba1d051765a52c4f9e 100644
--- a/third_party/WebKit/Source/core/loader/PingLoader.cpp
+++ b/third_party/WebKit/Source/core/loader/PingLoader.cpp
@@ -208,7 +208,7 @@ class PingLoaderImpl : public GarbageCollectedFinalized<PingLoaderImpl>,
// WebURLLoaderClient
bool willFollowRedirect(WebURLRequest&, const WebURLResponse&) override;
void didReceiveResponse(const WebURLResponse&) final;
- void didReceiveData(const char*, int, int) final;
+ void didReceiveData(const char*, int) final;
void didFinishLoading(double, int64_t, int64_t) final;
void didFail(const WebURLError&, int64_t, int64_t) final;
@@ -342,7 +342,7 @@ void PingLoaderImpl::didReceiveResponse(const WebURLResponse& response) {
dispose();
}
-void PingLoaderImpl::didReceiveData(const char*, int, int) {
+void PingLoaderImpl::didReceiveData(const char*, int) {
if (LocalFrame* frame = this->frame()) {
TRACE_EVENT1("devtools.timeline", "ResourceFinish", "data",
InspectorResourceFinishEvent::data(m_identifier, 0, true));

Powered by Google App Engine
This is Rietveld 408576698