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

Unified Diff: components/data_use_measurement/core/data_use_network_delegate.cc

Issue 2413663003: Expose GlobalRequestID in NavigationHandle and ResourceRequestInfo. (Closed)
Patch Set: Use OnURLRequestDestroyed Created 4 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
Index: components/data_use_measurement/core/data_use_network_delegate.cc
diff --git a/components/data_use_measurement/core/data_use_network_delegate.cc b/components/data_use_measurement/core/data_use_network_delegate.cc
index e7cb035ab08b61daec1763aecb1c38866393bb96..75c34a74617529d301c513b322bbb4e48ede115c 100644
--- a/components/data_use_measurement/core/data_use_network_delegate.cc
+++ b/components/data_use_measurement/core/data_use_network_delegate.cc
@@ -46,9 +46,9 @@ void DataUseNetworkDelegate::OnNetworkBytesSentInternal(
ascriber_->OnNetworkBytesSent(request, bytes_sent);
}
-void DataUseNetworkDelegate::OnCompletedInternal(net::URLRequest* request,
- bool started) {
- ascriber_->OnUrlRequestCompleted(request, started);
+void DataUseNetworkDelegate::OnURLRequestDestroyedInternal(
+ net::URLRequest* request) {
+ ascriber_->OnUrlRequestDestroyed(request);
}
} // namespace data_use_measurement

Powered by Google App Engine
This is Rietveld 408576698