OLD | NEW |
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 "chrome/browser/ssl/ssl_policy.h" | 5 #include "chrome/browser/ssl/ssl_policy.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/singleton.h" | 9 #include "base/singleton.h" |
10 #include "base/string_piece.h" | 10 #include "base/string_piece.h" |
11 #include "base/string_util.h" | 11 #include "base/string_util.h" |
12 #include "chrome/browser/prefs/pref_service.h" | 12 #include "chrome/browser/prefs/pref_service.h" |
13 #include "chrome/browser/renderer_host/render_process_host.h" | 13 #include "chrome/browser/renderer_host/render_process_host.h" |
14 #include "chrome/browser/renderer_host/render_view_host.h" | 14 #include "chrome/browser/renderer_host/render_view_host.h" |
15 #include "chrome/browser/renderer_host/site_instance.h" | 15 #include "chrome/browser/renderer_host/site_instance.h" |
16 #include "chrome/browser/ssl/ssl_cert_error_handler.h" | 16 #include "chrome/browser/ssl/ssl_cert_error_handler.h" |
17 #include "chrome/browser/ssl/ssl_error_info.h" | 17 #include "chrome/browser/ssl/ssl_error_info.h" |
18 #include "chrome/browser/ssl/ssl_request_info.h" | 18 #include "chrome/browser/ssl/ssl_request_info.h" |
19 #include "chrome/browser/tab_contents/navigation_entry.h" | 19 #include "chrome/browser/tab_contents/navigation_entry.h" |
20 #include "chrome/browser/tab_contents/tab_contents.h" | 20 #include "chrome/browser/tab_contents/tab_contents.h" |
21 #include "chrome/common/chrome_switches.h" | 21 #include "chrome/common/chrome_switches.h" |
22 #include "chrome/common/jstemplate_builder.h" | 22 #include "chrome/common/jstemplate_builder.h" |
23 #include "chrome/common/notification_service.h" | |
24 #include "chrome/common/pref_names.h" | 23 #include "chrome/common/pref_names.h" |
25 #include "chrome/common/time_format.h" | 24 #include "chrome/common/time_format.h" |
26 #include "chrome/common/url_constants.h" | 25 #include "chrome/common/url_constants.h" |
27 #include "grit/browser_resources.h" | 26 #include "grit/browser_resources.h" |
28 #include "grit/generated_resources.h" | 27 #include "grit/generated_resources.h" |
29 #include "net/base/cert_status_flags.h" | 28 #include "net/base/cert_status_flags.h" |
30 #include "net/base/ssl_info.h" | 29 #include "net/base/ssl_info.h" |
31 #include "webkit/glue/resource_type.h" | 30 #include "webkit/glue/resource_type.h" |
32 | 31 |
33 namespace { | 32 namespace { |
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
254 | 253 |
255 entry->ssl().set_security_style(entry->url().SchemeIsSecure() ? | 254 entry->ssl().set_security_style(entry->url().SchemeIsSecure() ? |
256 SECURITY_STYLE_AUTHENTICATED : SECURITY_STYLE_UNAUTHENTICATED); | 255 SECURITY_STYLE_AUTHENTICATED : SECURITY_STYLE_UNAUTHENTICATED); |
257 } | 256 } |
258 | 257 |
259 void SSLPolicy::OriginRanInsecureContent(const std::string& origin, int pid) { | 258 void SSLPolicy::OriginRanInsecureContent(const std::string& origin, int pid) { |
260 GURL parsed_origin(origin); | 259 GURL parsed_origin(origin); |
261 if (parsed_origin.SchemeIsSecure()) | 260 if (parsed_origin.SchemeIsSecure()) |
262 backend_->HostRanInsecureContent(parsed_origin.host(), pid); | 261 backend_->HostRanInsecureContent(parsed_origin.host(), pid); |
263 } | 262 } |
OLD | NEW |