Index: components/cronet/android/url_request_peer.cc |
diff --git a/components/cronet/android/url_request_peer.cc b/components/cronet/android/url_request_peer.cc |
index 1a163fd6af5791bc82abdf9280ca03967e7a0ab1..76acfd3edbb3c3d6153151cd322b6fef939cdb0a 100644 |
--- a/components/cronet/android/url_request_peer.cc |
+++ b/components/cronet/android/url_request_peer.cc |
@@ -75,6 +75,15 @@ std::string URLRequestPeer::GetHeader(const std::string &name) const { |
return value; |
} |
+bool URLRequestPeer::GetFullRequestHeaders( |
+ net::HttpRequestHeaders* headers) const { |
+ if (url_request_ == NULL) { |
+ return false; |
+ } |
+ return url_request_->GetFullRequestHeaders(headers); |
mef
2014/08/04 21:12:43
This returns *request* headers, not *response* hea
miloslav
2014/08/18 17:42:25
Oh my, I must have been really tired before my vac
|
+} |
+ |
+ |
void URLRequestPeer::Start() { |
context_->GetNetworkTaskRunner()->PostTask( |
FROM_HERE, |