blob: 281aa7e277570afedcec383730597a1fd8463ace [file] [log] [blame]
[email protected]f1d81922010-07-31 17:47:091// 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]9349cfb2010-08-31 18:00:538#include "net/base/cookie_store.h"
9#include "net/base/host_resolver.h"
10
11URLRequestContext::URLRequestContext()
12 : net_log_(NULL),
[email protected]c3a7bce2010-10-18 17:36:5413 host_resolver_(NULL),
[email protected]2db580532010-10-08 14:32:3714 dnsrr_resolver_(NULL),
[email protected]345c613b2010-11-22 19:33:1815 dns_cert_checker_(NULL),
[email protected]9349cfb2010-08-31 18:00:5316 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]70b92342010-10-12 05:54:0621 transport_security_state_(NULL),
22 is_main_(false) {
[email protected]9349cfb2010-08-31 18:00:5323}
[email protected]f1d81922010-07-31 17:47:0924
25const std::string& URLRequestContext::GetUserAgent(const GURL& url) const {
26 return EmptyString();
27}
[email protected]9349cfb2010-08-31 18:00:5328
29URLRequestContext::~URLRequestContext() {
30}