| Index: net/url_request/url_request_context.cc
|
| diff --git a/net/url_request/url_request_context.cc b/net/url_request/url_request_context.cc
|
| index cefa7b9db2593c3e0abc8ed1d39485fef36e267b..690f932bffae4245f5a48e02b86ed1a808c20e2e 100644
|
| --- a/net/url_request/url_request_context.cc
|
| +++ b/net/url_request/url_request_context.cc
|
| @@ -101,6 +101,16 @@ std::unique_ptr<URLRequest> URLRequestContext::CreateRequest(
|
| new URLRequest(url, priority, delegate, this, network_delegate_));
|
| }
|
|
|
| +std::unique_ptr<URLRequest> URLRequestContext::CreateRequest(
|
| + const GURL& url,
|
| + RequestPriority priority,
|
| + URLRequest::Delegate* delegate,
|
| + NetworkTrafficAnnotationTag traffic_annotation) const {
|
| + // |traffic_annotation| is just a tag that is extracted during static
|
| + // code analysis and can be ignored here.
|
| + return CreateRequest(url, priority, delegate);
|
| +}
|
| +
|
| void URLRequestContext::set_cookie_store(CookieStore* cookie_store) {
|
| cookie_store_ = cookie_store;
|
| }
|
|
|