Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(164)

Side by Side Diff: net/url_request/url_request_context.cc

Issue 5386001: Cache certificate verification results in memory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Upload before checkin Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « net/url_request/url_request_context.h ('k') | net/url_request/url_request_unittest.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 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 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 "net/url_request/url_request_context.h" 5 #include "net/url_request/url_request_context.h"
6 6
7 #include "base/string_util.h" 7 #include "base/string_util.h"
8 #include "net/base/cookie_store.h" 8 #include "net/base/cookie_store.h"
9 #include "net/base/host_resolver.h" 9 #include "net/base/host_resolver.h"
10 10
11 URLRequestContext::URLRequestContext() 11 URLRequestContext::URLRequestContext()
12 : net_log_(NULL), 12 : net_log_(NULL),
13 host_resolver_(NULL), 13 host_resolver_(NULL),
14 cert_verifier_(NULL),
14 dnsrr_resolver_(NULL), 15 dnsrr_resolver_(NULL),
15 dns_cert_checker_(NULL), 16 dns_cert_checker_(NULL),
16 http_transaction_factory_(NULL), 17 http_transaction_factory_(NULL),
17 ftp_transaction_factory_(NULL), 18 ftp_transaction_factory_(NULL),
18 http_auth_handler_factory_(NULL), 19 http_auth_handler_factory_(NULL),
19 network_delegate_(NULL), 20 network_delegate_(NULL),
20 cookie_policy_(NULL), 21 cookie_policy_(NULL),
21 transport_security_state_(NULL), 22 transport_security_state_(NULL),
22 is_main_(false) { 23 is_main_(false) {
23 } 24 }
24 25
25 const std::string& URLRequestContext::GetUserAgent(const GURL& url) const { 26 const std::string& URLRequestContext::GetUserAgent(const GURL& url) const {
26 return EmptyString(); 27 return EmptyString();
27 } 28 }
28 29
29 URLRequestContext::~URLRequestContext() { 30 URLRequestContext::~URLRequestContext() {
30 } 31 }
OLDNEW
« no previous file with comments | « net/url_request/url_request_context.h ('k') | net/url_request/url_request_unittest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698