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

Unified Diff: net/base/network_delegate_impl.cc

Issue 1284993005: Notify NetworkDelegate when bytes have been received over the network. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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: net/base/network_delegate_impl.cc
diff --git a/net/base/network_delegate_impl.cc b/net/base/network_delegate_impl.cc
index 542b4d02cb9feef8c93fc85c5a075368b43ecee1..858b0050e5c631275068994fac62a6be56e2738d 100644
--- a/net/base/network_delegate_impl.cc
+++ b/net/base/network_delegate_impl.cc
@@ -60,6 +60,9 @@ void NetworkDelegateImpl::OnRawBytesRead(const URLRequest& request,
int bytes_read) {
}
+void NetworkDelegateImpl::OnNetworkBytesReceived(const URLRequest& request,
bengr 2015/08/17 21:30:39 What's the argument for this approach instead of h
sclittle 2015/08/17 23:35:14 This is just a way for consumers to be notified ho
+ int64 bytes_received) {}
+
void NetworkDelegateImpl::OnCompleted(URLRequest* request, bool started) {
}

Powered by Google App Engine
This is Rietveld 408576698