OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 "chrome/browser/url_fetcher.h" | 5 #include "chrome/browser/url_fetcher.h" |
6 | 6 |
| 7 #include "base/compiler_specific.h" |
7 #include "base/string_util.h" | 8 #include "base/string_util.h" |
8 #include "base/thread.h" | 9 #include "base/thread.h" |
9 #include "chrome/browser/browser_process.h" | 10 #include "chrome/browser/browser_process.h" |
10 #include "chrome/browser/chrome_thread.h" | 11 #include "chrome/browser/chrome_thread.h" |
11 #include "chrome/browser/net/dns_master.h" | |
12 #include "googleurl/src/gurl.h" | 12 #include "googleurl/src/gurl.h" |
13 #include "net/base/load_flags.h" | 13 #include "net/base/load_flags.h" |
14 | 14 |
15 URLFetcher::URLFetcher(const GURL& url, | 15 URLFetcher::URLFetcher(const GURL& url, |
16 RequestType request_type, | 16 RequestType request_type, |
17 Delegate* d) | 17 Delegate* d) |
18 #pragma warning(suppress: 4355) // Okay to pass "this" here. | 18 : ALLOW_THIS_IN_INITIALIZER_LIST( |
19 : core_(new Core(this, url, request_type, d)) { | 19 core_(new Core(this, url, request_type, d))) { |
20 } | 20 } |
21 | 21 |
22 URLFetcher::~URLFetcher() { | 22 URLFetcher::~URLFetcher() { |
23 core_->Stop(); | 23 core_->Stop(); |
24 } | 24 } |
25 | 25 |
26 URLFetcher::Core::Core(URLFetcher* fetcher, | 26 URLFetcher::Core::Core(URLFetcher* fetcher, |
27 const GURL& original_url, | 27 const GURL& original_url, |
28 RequestType request_type, | 28 RequestType request_type, |
29 URLFetcher::Delegate* d) | 29 URLFetcher::Delegate* d) |
30 : fetcher_(fetcher), | 30 : fetcher_(fetcher), |
31 original_url_(original_url), | 31 original_url_(original_url), |
32 request_type_(request_type), | 32 request_type_(request_type), |
33 delegate_(d), | 33 delegate_(d), |
34 delegate_loop_(MessageLoop::current()), | 34 delegate_loop_(MessageLoop::current()), |
35 io_loop_(ChromeThread::GetMessageLoop(ChromeThread::IO)), | 35 io_loop_(ChromeThread::GetMessageLoop(ChromeThread::IO)), |
36 request_(NULL), | 36 request_(NULL), |
| 37 load_flags_(net::LOAD_NORMAL), |
37 response_code_(-1), | 38 response_code_(-1), |
38 load_flags_(net::LOAD_NORMAL), | |
39 protect_entry_(URLFetcherProtectManager::GetInstance()->Register( | 39 protect_entry_(URLFetcherProtectManager::GetInstance()->Register( |
40 original_url_.host())), | 40 original_url_.host())), |
41 num_retries_(0) { | 41 num_retries_(0) { |
42 } | 42 } |
43 | 43 |
44 void URLFetcher::Core::Start() { | 44 void URLFetcher::Core::Start() { |
45 DCHECK(delegate_loop_); | 45 DCHECK(delegate_loop_); |
46 DCHECK(io_loop_); | 46 DCHECK(io_loop_); |
47 DCHECK(request_context_) << "We need an URLRequestContext!"; | 47 DCHECK(request_context_) << "We need an URLRequestContext!"; |
48 io_loop_->PostDelayedTask(FROM_HERE, NewRunnableMethod( | 48 io_loop_->PostDelayedTask(FROM_HERE, NewRunnableMethod( |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 cookies_, data_); | 173 cookies_, data_); |
174 } | 174 } |
175 } | 175 } |
176 } else { | 176 } else { |
177 protect_entry_->UpdateBackoff(URLFetcherProtectEntry::SUCCESS); | 177 protect_entry_->UpdateBackoff(URLFetcherProtectEntry::SUCCESS); |
178 if (delegate_) | 178 if (delegate_) |
179 delegate_->OnURLFetchComplete(fetcher_, url_, status, response_code_, | 179 delegate_->OnURLFetchComplete(fetcher_, url_, status, response_code_, |
180 cookies_, data_); | 180 cookies_, data_); |
181 } | 181 } |
182 } | 182 } |
OLD | NEW |