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

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

Issue 2441001: Move net::HTTPSProber from net_base to net (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Created 10 years, 6 months 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
« no previous file with comments | « net/url_request/https_prober.h ('k') | net/url_request/url_request_http_job.cc » ('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) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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/base/https_prober.h" 5 #include "net/url_request/https_prober.h"
6 6
7 #include "net/url_request/url_request.h" 7 #include "net/url_request/url_request.h"
8 #include "net/url_request/url_request_context.h" 8 #include "net/url_request/url_request_context.h"
9 9
10 namespace net { 10 namespace net {
11 11
12 bool HTTPSProber::HaveProbed(const std::string& host) const { 12 bool HTTPSProber::HaveProbed(const std::string& host) const {
13 return probed_.find(host) != probed_.end(); 13 return probed_.find(host) != probed_.end();
14 } 14 }
15 15
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 } else { 71 } else {
72 Failure(request); 72 Failure(request);
73 } 73 }
74 } 74 }
75 75
76 void HTTPSProber::OnReadCompleted(URLRequest* request, int bytes_read) { 76 void HTTPSProber::OnReadCompleted(URLRequest* request, int bytes_read) {
77 NOTREACHED(); 77 NOTREACHED();
78 } 78 }
79 79
80 } // namespace net 80 } // namespace net
OLDNEW
« no previous file with comments | « net/url_request/https_prober.h ('k') | net/url_request/url_request_http_job.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698