1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "net/url_request/url_request_context.h"
#include "base/compiler_specific.h"
#include "base/string_util.h"
#include "net/base/cookie_store.h"
#include "net/base/host_resolver.h"
#include "net/ftp/ftp_transaction_factory.h"
#include "net/http/http_transaction_factory.h"
namespace net {
URLRequestContext::URLRequestContext()
: ALLOW_THIS_IN_INITIALIZER_LIST(weak_factory_(this)),
net_log_(NULL),
host_resolver_(NULL),
cert_verifier_(NULL),
origin_bound_cert_service_(NULL),
fraudulent_certificate_reporter_(NULL),
http_auth_handler_factory_(NULL),
proxy_service_(NULL),
network_delegate_(NULL),
http_server_properties_(NULL),
transport_security_state_(NULL),
ftp_auth_cache_(new FtpAuthCache),
http_transaction_factory_(NULL),
ftp_transaction_factory_(NULL),
job_factory_(NULL) {
}
void URLRequestContext::CopyFrom(URLRequestContext* other) {
// Copy URLRequestContext parameters.
set_net_log(other->net_log());
set_host_resolver(other->host_resolver());
set_cert_verifier(other->cert_verifier());
set_origin_bound_cert_service(other->origin_bound_cert_service());
set_fraudulent_certificate_reporter(other->fraudulent_certificate_reporter());
set_http_auth_handler_factory(other->http_auth_handler_factory());
set_proxy_service(other->proxy_service());
set_ssl_config_service(other->ssl_config_service());
set_network_delegate(other->network_delegate());
set_http_server_properties(other->http_server_properties());
set_cookie_store(other->cookie_store());
set_transport_security_state(other->transport_security_state());
// FTPAuthCache is unique per context.
set_accept_language(other->accept_language());
set_accept_charset(other->accept_charset());
set_referrer_charset(other->referrer_charset());
set_http_transaction_factory(other->http_transaction_factory());
set_ftp_transaction_factory(other->ftp_transaction_factory());
set_job_factory(other->job_factory());
}
void URLRequestContext::set_cookie_store(CookieStore* cookie_store) {
cookie_store_ = cookie_store;
}
const std::string& URLRequestContext::GetUserAgent(const GURL& url) const {
return EmptyString();
}
URLRequestContext::~URLRequestContext() {
}
} // namespace net
|