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

Side by Side Diff: content/browser/ssl/ssl_policy.cc

Issue 369703002: Remember user decisions on invalid certificates behind a flag (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed broken include Created 6 years, 4 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "content/browser/ssl/ssl_policy.h" 5 #include "content/browser/ssl/ssl_policy.h"
6 6
7 #include "base/base_switches.h" 7 #include "base/base_switches.h"
8 #include "base/bind.h" 8 #include "base/bind.h"
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/memory/singleton.h" 10 #include "base/memory/singleton.h"
(...skipping 15 matching lines...) Expand all
26 26
27 namespace content { 27 namespace content {
28 28
29 SSLPolicy::SSLPolicy(SSLPolicyBackend* backend) 29 SSLPolicy::SSLPolicy(SSLPolicyBackend* backend)
30 : backend_(backend) { 30 : backend_(backend) {
31 DCHECK(backend_); 31 DCHECK(backend_);
32 } 32 }
33 33
34 void SSLPolicy::OnCertError(SSLCertErrorHandler* handler) { 34 void SSLPolicy::OnCertError(SSLCertErrorHandler* handler) {
35 // First we check if we know the policy for this error. 35 // First we check if we know the policy for this error.
36 net::CertPolicy::Judgment judgment = backend_->QueryPolicy( 36 net::CertPolicy::Judgment judgment =
37 handler->ssl_info().cert.get(), 37 backend_->QueryPolicy(handler->ssl_info().cert.get(),
38 handler->request_url().host(), 38 handler->request_url().host(),
39 handler->cert_error()); 39 handler->cert_error());
40 40
41 if (judgment == net::CertPolicy::ALLOWED) { 41 if (judgment == net::CertPolicy::ALLOWED) {
42 handler->ContinueRequest(); 42 handler->ContinueRequest();
43 return; 43 return;
44 } 44 }
45 45
46 // The judgment is either DENIED or UNKNOWN. 46 // The judgment is either DENIED or UNKNOWN.
47 // For now we handle the DENIED as the UNKNOWN, which means a blocking 47 // For now we handle the DENIED as the UNKNOWN, which means a blocking
48 // page is shown to the user every time he comes back to the page. 48 // page is shown to the user every time he comes back to the page.
49 49
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 SECURITY_STYLE_AUTHENTICATED : SECURITY_STYLE_UNAUTHENTICATED; 220 SECURITY_STYLE_AUTHENTICATED : SECURITY_STYLE_UNAUTHENTICATED;
221 } 221 }
222 222
223 void SSLPolicy::OriginRanInsecureContent(const std::string& origin, int pid) { 223 void SSLPolicy::OriginRanInsecureContent(const std::string& origin, int pid) {
224 GURL parsed_origin(origin); 224 GURL parsed_origin(origin);
225 if (parsed_origin.SchemeIsSecure()) 225 if (parsed_origin.SchemeIsSecure())
226 backend_->HostRanInsecureContent(parsed_origin.host(), pid); 226 backend_->HostRanInsecureContent(parsed_origin.host(), pid);
227 } 227 }
228 228
229 } // namespace content 229 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698