OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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_manager.h" | 5 #include "chrome/browser/ssl/ssl_manager.h" |
6 | 6 |
7 #include "base/message_loop.h" | 7 #include "base/message_loop.h" |
8 #include "base/string_util.h" | 8 #include "base/string_util.h" |
9 #include "chrome/app/theme/theme_resources.h" | 9 #include "chrome/app/theme/theme_resources.h" |
10 #include "chrome/browser/browser_process.h" | 10 #include "chrome/browser/browser_process.h" |
11 #include "chrome/browser/load_notification_details.h" | 11 #include "chrome/browser/load_notification_details.h" |
12 #include "chrome/browser/load_from_memory_cache_details.h" | 12 #include "chrome/browser/load_from_memory_cache_details.h" |
13 #include "chrome/browser/renderer_host/render_view_host.h" | 13 #include "chrome/browser/renderer_host/render_view_host.h" |
14 #include "chrome/browser/resource_request_details.h" | 14 #include "chrome/browser/renderer_host/resource_request_details.h" |
15 #include "chrome/browser/ssl/ssl_error_info.h" | 15 #include "chrome/browser/ssl/ssl_error_info.h" |
16 #include "chrome/browser/ssl/ssl_policy.h" | 16 #include "chrome/browser/ssl/ssl_policy.h" |
17 #include "chrome/browser/tab_contents/infobar_delegate.h" | 17 #include "chrome/browser/tab_contents/infobar_delegate.h" |
18 #include "chrome/browser/tab_contents/navigation_controller.h" | 18 #include "chrome/browser/tab_contents/navigation_controller.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/provisional_load_details.h" | 20 #include "chrome/browser/tab_contents/provisional_load_details.h" |
21 #include "chrome/browser/tab_contents/tab_contents.h" | 21 #include "chrome/browser/tab_contents/tab_contents.h" |
22 #include "chrome/browser/tab_contents/tab_util.h" | 22 #include "chrome/browser/tab_contents/tab_util.h" |
23 #include "chrome/browser/tab_contents/web_contents.h" | 23 #include "chrome/browser/tab_contents/web_contents.h" |
24 #include "chrome/common/l10n_util.h" | 24 #include "chrome/common/l10n_util.h" |
(...skipping 691 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
716 | 716 |
717 if (ca_name) { | 717 if (ca_name) { |
718 // TODO(wtc): should we show the root CA's name instead? | 718 // TODO(wtc): should we show the root CA's name instead? |
719 *ca_name = l10n_util::GetStringF( | 719 *ca_name = l10n_util::GetStringF( |
720 IDS_SECURE_CONNECTION_EV_CA, | 720 IDS_SECURE_CONNECTION_EV_CA, |
721 UTF8ToWide(cert.issuer().organization_names[0])); | 721 UTF8ToWide(cert.issuer().organization_names[0])); |
722 } | 722 } |
723 return true; | 723 return true; |
724 } | 724 } |
725 | 725 |
OLD | NEW |