| Index: net/url_request/url_fetcher_impl.cc
|
| diff --git a/net/url_request/url_fetcher_impl.cc b/net/url_request/url_fetcher_impl.cc
|
| index bdeee40be40d42ab001112c887eb4e6cfad7ffa8..05605f59be8a885f20b3de15cfb03e482dc54fc6 100644
|
| --- a/net/url_request/url_fetcher_impl.cc
|
| +++ b/net/url_request/url_fetcher_impl.cc
|
| @@ -17,11 +17,13 @@ namespace net {
|
|
|
| static URLFetcherFactory* g_factory = NULL;
|
|
|
| -URLFetcherImpl::URLFetcherImpl(const GURL& url,
|
| - RequestType request_type,
|
| - URLFetcherDelegate* d)
|
| - : core_(new URLFetcherCore(this, url, request_type, d)) {
|
| -}
|
| +URLFetcherImpl::URLFetcherImpl(
|
| + const GURL& url,
|
| + RequestType request_type,
|
| + URLFetcherDelegate* d,
|
| + net::NetworkTrafficAnnotationTag traffic_annotation)
|
| + : core_(
|
| + new URLFetcherCore(this, url, request_type, d, traffic_annotation)) {}
|
|
|
| URLFetcherImpl::~URLFetcherImpl() {
|
| core_->Stop();
|
|
|