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

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

Issue 5634005: Add a new GetInstance() method for singleton classes under chrome/service and /net. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . 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.cc ('k') | net/url_request/url_request_job_manager.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_http_job.h" 5 #include "net/url_request/url_request_http_job.h"
6 6
7 #include "base/base_switches.h" 7 #include "base/base_switches.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "base/file_util.h" 10 #include "base/file_util.h"
(...skipping 919 matching lines...) Expand 10 before | Expand all | Expand 10 after
930 domain_state); 930 domain_state);
931 continue; 931 continue;
932 } 932 }
933 933
934 if (!request()) 934 if (!request())
935 break; 935 break;
936 936
937 // At this point, we have a request for opportunistic encryption over HTTP. 937 // At this point, we have a request for opportunistic encryption over HTTP.
938 // In this case we need to probe to check that we can make HTTPS 938 // In this case we need to probe to check that we can make HTTPS
939 // connections to that host. 939 // connections to that host.
940 net::HTTPSProber* const prober = Singleton<net::HTTPSProber>::get(); 940 net::HTTPSProber* const prober = net::HTTPSProber::GetInstance();
941 if (prober->HaveProbed(request_info_.url.host()) || 941 if (prober->HaveProbed(request_info_.url.host()) ||
942 prober->InFlight(request_info_.url.host())) { 942 prober->InFlight(request_info_.url.host())) {
943 continue; 943 continue;
944 } 944 }
945 945
946 HTTPSProberDelegate* delegate = 946 HTTPSProberDelegate* delegate =
947 new HTTPSProberDelegate(request_info_.url.host(), max_age, 947 new HTTPSProberDelegate(request_info_.url.host(), max_age,
948 include_subdomains, 948 include_subdomains,
949 ctx->transport_security_state()); 949 ctx->transport_security_state());
950 if (!prober->ProbeHost(request_info_.url.host(), request()->context(), 950 if (!prober->ProbeHost(request_info_.url.host(), request()->context(),
951 delegate)) { 951 delegate)) {
952 delete delegate; 952 delete delegate;
953 } 953 }
954 } 954 }
955 } 955 }
OLDNEW
« no previous file with comments | « net/url_request/url_request.cc ('k') | net/url_request/url_request_job_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698