| 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 1e3dc4ead60cf6f6e5bfbeb349b0808af2e2db36..38f907130f8a8f05a4bfaaaec7a12a2b8db1e9f9 100644
|
| --- a/net/url_request/url_request_context.cc
|
| +++ b/net/url_request/url_request_context.cc
|
| @@ -87,6 +87,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;
|
| }
|
|
|