| 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 "chrome/browser/ui/page_info/page_info_ui.h" | 5 #include "chrome/browser/ui/page_info/page_info_ui.h" |
| 6 | 6 |
| 7 #include <utility> |
| 8 |
| 9 #include "base/command_line.h" |
| 7 #include "base/macros.h" | 10 #include "base/macros.h" |
| 8 #include "chrome/browser/content_settings/host_content_settings_map_factory.h" | 11 #include "chrome/browser/content_settings/host_content_settings_map_factory.h" |
| 9 #include "chrome/browser/permissions/permission_manager.h" | 12 #include "chrome/browser/permissions/permission_manager.h" |
| 10 #include "chrome/browser/permissions/permission_result.h" | 13 #include "chrome/browser/permissions/permission_result.h" |
| 11 #include "chrome/browser/permissions/permission_util.h" | 14 #include "chrome/browser/permissions/permission_util.h" |
| 12 #include "chrome/browser/plugins/plugin_utils.h" | 15 #include "chrome/browser/plugins/plugin_utils.h" |
| 13 #include "chrome/browser/plugins/plugins_field_trial.h" | 16 #include "chrome/browser/plugins/plugins_field_trial.h" |
| 14 #include "chrome/common/chrome_features.h" | 17 #include "chrome/common/chrome_features.h" |
| 18 #include "chrome/common/chrome_switches.h" |
| 15 #include "chrome/grit/chromium_strings.h" | 19 #include "chrome/grit/chromium_strings.h" |
| 16 #include "chrome/grit/generated_resources.h" | 20 #include "chrome/grit/generated_resources.h" |
| 17 #include "chrome/grit/theme_resources.h" | 21 #include "chrome/grit/theme_resources.h" |
| 18 #include "components/strings/grit/components_chromium_strings.h" | 22 #include "components/strings/grit/components_chromium_strings.h" |
| 19 #include "components/strings/grit/components_strings.h" | 23 #include "components/strings/grit/components_strings.h" |
| 20 #include "ppapi/features/features.h" | 24 #include "ppapi/features/features.h" |
| 21 #include "ui/base/l10n/l10n_util.h" | 25 #include "ui/base/l10n/l10n_util.h" |
| 22 #include "ui/base/resource/resource_bundle.h" | 26 #include "ui/base/resource/resource_bundle.h" |
| 23 #include "ui/gfx/image/image.h" | 27 #include "ui/gfx/image/image.h" |
| 24 #include "url/gurl.h" | 28 #include "url/gurl.h" |
| 25 | 29 |
| 30 #if !defined(OS_ANDROID) |
| 31 #include "chrome/app/vector_icons/vector_icons.h" |
| 32 #include "ui/gfx/color_palette.h" |
| 33 #include "ui/gfx/paint_vector_icon.h" |
| 34 #endif |
| 35 |
| 26 namespace { | 36 namespace { |
| 27 | 37 |
| 28 const int kInvalidResourceID = -1; | 38 const int kInvalidResourceID = -1; |
| 29 | 39 |
| 30 // The resource IDs for the strings that are displayed on the permissions | 40 // The resource IDs for the strings that are displayed on the permissions |
| 31 // button if the permission setting is managed by policy. | 41 // button if the permission setting is managed by policy. |
| 32 const int kPermissionButtonTextIDPolicyManaged[] = { | 42 const int kPermissionButtonTextIDPolicyManaged[] = { |
| 33 kInvalidResourceID, | 43 kInvalidResourceID, |
| 34 IDS_PAGE_INFO_PERMISSION_ALLOWED_BY_POLICY, | 44 IDS_PAGE_INFO_PERMISSION_ALLOWED_BY_POLICY, |
| 35 IDS_PAGE_INFO_PERMISSION_BLOCKED_BY_POLICY, | 45 IDS_PAGE_INFO_PERMISSION_BLOCKED_BY_POLICY, |
| (...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 441 } | 451 } |
| 442 return resource_id; | 452 return resource_id; |
| 443 } | 453 } |
| 444 | 454 |
| 445 // static | 455 // static |
| 446 const gfx::Image& PageInfoUI::GetConnectionIcon( | 456 const gfx::Image& PageInfoUI::GetConnectionIcon( |
| 447 PageInfo::SiteConnectionStatus status) { | 457 PageInfo::SiteConnectionStatus status) { |
| 448 ResourceBundle& rb = ResourceBundle::GetSharedInstance(); | 458 ResourceBundle& rb = ResourceBundle::GetSharedInstance(); |
| 449 return rb.GetNativeImageNamed(GetConnectionIconID(status)); | 459 return rb.GetNativeImageNamed(GetConnectionIconID(status)); |
| 450 } | 460 } |
| 461 |
| 462 #if !defined(OS_ANDROID) |
| 463 // static |
| 464 const gfx::ImageSkia PageInfoUI::GetCertificateIcon() { |
| 465 return gfx::CreateVectorIcon(kCertificateIcon, 16, gfx::kChromeIconGrey); |
| 466 } |
| 467 #endif |
| 468 |
| 469 // static |
| 470 bool PageInfoUI::ShouldShowCertificateLink() { |
| 471 return base::CommandLine::ForCurrentProcess()->HasSwitch( |
| 472 switches::kShowCertLink); |
| 473 } |
| OLD | NEW |