| 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..f24e84422590afd6754774604149135243fc91d0 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_classification) 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;
|
| }
|
|
|