OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/bind.h" | 7 #include "base/bind.h" |
8 #include "base/base_switches.h" | 8 #include "base/base_switches.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/string_piece.h" | 11 #include "base/string_piece.h" |
12 #include "base/string_util.h" | 12 #include "base/string_util.h" |
13 #include "content/browser/content_browser_client.h" | |
14 #include "content/browser/renderer_host/render_process_host.h" | 13 #include "content/browser/renderer_host/render_process_host.h" |
15 #include "content/browser/renderer_host/render_view_host.h" | 14 #include "content/browser/renderer_host/render_view_host.h" |
16 #include "content/browser/site_instance.h" | 15 #include "content/browser/site_instance.h" |
17 #include "content/browser/ssl/ssl_cert_error_handler.h" | 16 #include "content/browser/ssl/ssl_cert_error_handler.h" |
18 #include "content/browser/ssl/ssl_request_info.h" | 17 #include "content/browser/ssl/ssl_request_info.h" |
19 #include "content/browser/tab_contents/navigation_entry.h" | 18 #include "content/browser/tab_contents/navigation_entry.h" |
20 #include "content/browser/tab_contents/tab_contents.h" | 19 #include "content/browser/tab_contents/tab_contents.h" |
| 20 #include "content/public/browser/content_browser_client.h" |
21 #include "content/public/common/url_constants.h" | 21 #include "content/public/common/url_constants.h" |
22 #include "net/base/cert_status_flags.h" | 22 #include "net/base/cert_status_flags.h" |
23 #include "net/base/ssl_info.h" | 23 #include "net/base/ssl_info.h" |
24 #include "webkit/glue/resource_type.h" | 24 #include "webkit/glue/resource_type.h" |
25 | 25 |
26 namespace { | 26 namespace { |
27 | 27 |
28 static const char kDot = '.'; | 28 static const char kDot = '.'; |
29 | 29 |
30 static bool IsIntranetHost(const std::string& host) { | 30 static bool IsIntranetHost(const std::string& host) { |
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
207 | 207 |
208 entry->ssl().set_security_style(entry->url().SchemeIsSecure() ? | 208 entry->ssl().set_security_style(entry->url().SchemeIsSecure() ? |
209 SECURITY_STYLE_AUTHENTICATED : SECURITY_STYLE_UNAUTHENTICATED); | 209 SECURITY_STYLE_AUTHENTICATED : SECURITY_STYLE_UNAUTHENTICATED); |
210 } | 210 } |
211 | 211 |
212 void SSLPolicy::OriginRanInsecureContent(const std::string& origin, int pid) { | 212 void SSLPolicy::OriginRanInsecureContent(const std::string& origin, int pid) { |
213 GURL parsed_origin(origin); | 213 GURL parsed_origin(origin); |
214 if (parsed_origin.SchemeIsSecure()) | 214 if (parsed_origin.SchemeIsSecure()) |
215 backend_->HostRanInsecureContent(parsed_origin.host(), pid); | 215 backend_->HostRanInsecureContent(parsed_origin.host(), pid); |
216 } | 216 } |
OLD | NEW |