OLD | NEW |
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" |
11 #include "base/strings/string_piece.h" | 11 #include "base/strings/string_piece.h" |
12 #include "base/strings/string_util.h" | 12 #include "base/strings/string_util.h" |
13 #include "content/browser/frame_host/navigation_entry_impl.h" | 13 #include "content/browser/frame_host/navigation_entry_impl.h" |
14 #include "content/browser/renderer_host/render_process_host_impl.h" | 14 #include "content/browser/renderer_host/render_process_host_impl.h" |
15 #include "content/browser/renderer_host/render_view_host_impl.h" | 15 #include "content/browser/renderer_host/render_view_host_impl.h" |
16 #include "content/browser/site_instance_impl.h" | 16 #include "content/browser/site_instance_impl.h" |
17 #include "content/browser/ssl/ssl_cert_error_handler.h" | 17 #include "content/browser/ssl/ssl_cert_error_handler.h" |
18 #include "content/browser/ssl/ssl_request_info.h" | 18 #include "content/browser/ssl/ssl_request_info.h" |
19 #include "content/browser/web_contents/web_contents_impl.h" | 19 #include "content/browser/web_contents/web_contents_impl.h" |
20 #include "content/public/browser/content_browser_client.h" | 20 #include "content/public/browser/content_browser_client.h" |
| 21 #include "content/public/common/resource_type.h" |
21 #include "content/public/common/ssl_status.h" | 22 #include "content/public/common/ssl_status.h" |
22 #include "content/public/common/url_constants.h" | 23 #include "content/public/common/url_constants.h" |
23 #include "net/ssl/ssl_info.h" | 24 #include "net/ssl/ssl_info.h" |
24 #include "webkit/common/resource_type.h" | |
25 | 25 |
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) { |
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 |
OLD | NEW |