[email protected] | f1d8192 | 2010-07-31 17:47:09 | [diff] [blame] | 1 | // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #include "net/url_request/url_request_context.h" |
| 6 | |
| 7 | #include "base/string_util.h" |
[email protected] | 9349cfb | 2010-08-31 18:00:53 | [diff] [blame] | 8 | #include "net/base/cookie_store.h" |
| 9 | #include "net/base/host_resolver.h" |
| 10 | |
| 11 | URLRequestContext::URLRequestContext() |
| 12 | : net_log_(NULL), |
[email protected] | c3a7bce | 2010-10-18 17:36:54 | [diff] [blame] | 13 | host_resolver_(NULL), |
[email protected] | 2db58053 | 2010-10-08 14:32:37 | [diff] [blame] | 14 | dnsrr_resolver_(NULL), |
[email protected] | 345c613b | 2010-11-22 19:33:18 | [diff] [blame^] | 15 | dns_cert_checker_(NULL), |
[email protected] | 9349cfb | 2010-08-31 18:00:53 | [diff] [blame] | 16 | http_transaction_factory_(NULL), |
| 17 | ftp_transaction_factory_(NULL), |
| 18 | http_auth_handler_factory_(NULL), |
| 19 | network_delegate_(NULL), |
| 20 | cookie_policy_(NULL), |
[email protected] | 70b9234 | 2010-10-12 05:54:06 | [diff] [blame] | 21 | transport_security_state_(NULL), |
| 22 | is_main_(false) { |
[email protected] | 9349cfb | 2010-08-31 18:00:53 | [diff] [blame] | 23 | } |
[email protected] | f1d8192 | 2010-07-31 17:47:09 | [diff] [blame] | 24 | |
| 25 | const std::string& URLRequestContext::GetUserAgent(const GURL& url) const { |
| 26 | return EmptyString(); |
| 27 | } |
[email protected] | 9349cfb | 2010-08-31 18:00:53 | [diff] [blame] | 28 | |
| 29 | URLRequestContext::~URLRequestContext() { |
| 30 | } |