OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "components/translate/core/browser/translate_url_fetcher.h" | 5 #include "components/translate/core/browser/translate_url_fetcher.h" |
6 | 6 |
| 7 #include "components/data_use_measurement/core/data_use_user_data.h" |
7 #include "components/translate/core/browser/translate_download_manager.h" | 8 #include "components/translate/core/browser/translate_download_manager.h" |
8 #include "net/base/load_flags.h" | 9 #include "net/base/load_flags.h" |
9 #include "net/http/http_status_code.h" | 10 #include "net/http/http_status_code.h" |
10 #include "net/url_request/url_fetcher.h" | 11 #include "net/url_request/url_fetcher.h" |
11 #include "net/url_request/url_request_status.h" | 12 #include "net/url_request/url_request_status.h" |
12 | 13 |
13 namespace translate { | 14 namespace translate { |
14 | 15 |
15 namespace { | 16 namespace { |
16 | 17 |
(...skipping 22 matching lines...) Expand all Loading... |
39 | 40 |
40 if (retry_count_ >= kMaxRetry) | 41 if (retry_count_ >= kMaxRetry) |
41 return false; | 42 return false; |
42 retry_count_++; | 43 retry_count_++; |
43 | 44 |
44 state_ = REQUESTING; | 45 state_ = REQUESTING; |
45 url_ = url; | 46 url_ = url; |
46 callback_ = callback; | 47 callback_ = callback; |
47 | 48 |
48 fetcher_ = net::URLFetcher::Create(id_, url_, net::URLFetcher::GET, this); | 49 fetcher_ = net::URLFetcher::Create(id_, url_, net::URLFetcher::GET, this); |
| 50 data_use_measurement::DataUseUserData::AttachToFetcher( |
| 51 fetcher_.get(), data_use_measurement::DataUseUserData::TRANSLATE); |
49 fetcher_->SetLoadFlags(net::LOAD_DO_NOT_SEND_COOKIES | | 52 fetcher_->SetLoadFlags(net::LOAD_DO_NOT_SEND_COOKIES | |
50 net::LOAD_DO_NOT_SAVE_COOKIES); | 53 net::LOAD_DO_NOT_SAVE_COOKIES); |
51 fetcher_->SetRequestContext( | 54 fetcher_->SetRequestContext( |
52 TranslateDownloadManager::GetInstance()->request_context()); | 55 TranslateDownloadManager::GetInstance()->request_context()); |
53 // Set retry parameter for HTTP status code 5xx. This doesn't work against | 56 // Set retry parameter for HTTP status code 5xx. This doesn't work against |
54 // 106 (net::ERR_INTERNET_DISCONNECTED) and so on. | 57 // 106 (net::ERR_INTERNET_DISCONNECTED) and so on. |
55 // TranslateLanguageList handles network status, and implements retry. | 58 // TranslateLanguageList handles network status, and implements retry. |
56 fetcher_->SetMaxRetriesOn5xx(max_retry_on_5xx_); | 59 fetcher_->SetMaxRetriesOn5xx(max_retry_on_5xx_); |
57 if (!extra_request_header_.empty()) | 60 if (!extra_request_header_.empty()) |
58 fetcher_->SetExtraRequestHeaders(extra_request_header_); | 61 fetcher_->SetExtraRequestHeaders(extra_request_header_); |
(...skipping 14 matching lines...) Expand all Loading... |
73 } else { | 76 } else { |
74 state_ = FAILED; | 77 state_ = FAILED; |
75 } | 78 } |
76 | 79 |
77 // Transfer URLFetcher's ownership before invoking a callback. | 80 // Transfer URLFetcher's ownership before invoking a callback. |
78 scoped_ptr<const net::URLFetcher> delete_ptr(fetcher_.release()); | 81 scoped_ptr<const net::URLFetcher> delete_ptr(fetcher_.release()); |
79 callback_.Run(id_, state_ == COMPLETED, data); | 82 callback_.Run(id_, state_ == COMPLETED, data); |
80 } | 83 } |
81 | 84 |
82 } // namespace translate | 85 } // namespace translate |
OLD | NEW |