| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 "components/toolbar/toolbar_model_impl.h" | 5 #include "components/toolbar/toolbar_model_impl.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "base/strings/utf_string_conversions.h" | 8 #include "base/strings/utf_string_conversions.h" |
| 9 #include "base/time/time.h" | 9 #include "base/time/time.h" |
| 10 #include "build/build_config.h" | 10 #include "build/build_config.h" |
| 11 #include "components/prefs/pref_service.h" | 11 #include "components/prefs/pref_service.h" |
| 12 #include "components/security_state/core/security_state.h" | 12 #include "components/security_state/core/security_state.h" |
| 13 #include "components/strings/grit/components_strings.h" | 13 #include "components/strings/grit/components_strings.h" |
| 14 #include "components/toolbar/toolbar_model_delegate.h" | 14 #include "components/toolbar/toolbar_model_delegate.h" |
| 15 #include "components/url_formatter/elide_url.h" | 15 #include "components/url_formatter/elide_url.h" |
| 16 #include "components/url_formatter/url_formatter.h" | 16 #include "components/url_formatter/url_formatter.h" |
| 17 #include "net/cert/cert_status_flags.h" | 17 #include "net/cert/cert_status_flags.h" |
| 18 #include "net/cert/x509_certificate.h" | 18 #include "net/cert/x509_certificate.h" |
| 19 #include "net/ssl/ssl_connection_status_flags.h" | 19 #include "net/ssl/ssl_connection_status_flags.h" |
| 20 #include "ui/base/l10n/l10n_util.h" | 20 #include "ui/base/l10n/l10n_util.h" |
| 21 #include "ui/gfx/text_elider.h" | 21 #include "ui/gfx/text_elider.h" |
| 22 #include "ui/gfx/vector_icon_types.h" | 22 #include "ui/gfx/vector_icon_types.h" |
| 23 | 23 |
| 24 #if !defined(OS_ANDROID) && !defined(OS_IOS) | 24 #if !defined(OS_ANDROID) && !defined(OS_IOS) |
| 25 #include "components/toolbar/vector_icons.h" // nogncheck | 25 #include "components/toolbar/vector_icons.h" // nogncheck |
| 26 #include "ui/vector_icons/vector_icons.h" // nogncheck |
| 26 #endif | 27 #endif |
| 27 | 28 |
| 28 ToolbarModelImpl::ToolbarModelImpl(ToolbarModelDelegate* delegate, | 29 ToolbarModelImpl::ToolbarModelImpl(ToolbarModelDelegate* delegate, |
| 29 size_t max_url_display_chars) | 30 size_t max_url_display_chars) |
| 30 : delegate_(delegate), max_url_display_chars_(max_url_display_chars) { | 31 : delegate_(delegate), max_url_display_chars_(max_url_display_chars) { |
| 31 DCHECK(delegate_); | 32 DCHECK(delegate_); |
| 32 } | 33 } |
| 33 | 34 |
| 34 ToolbarModelImpl::~ToolbarModelImpl() { | 35 ToolbarModelImpl::~ToolbarModelImpl() { |
| 35 } | 36 } |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 case security_state::NONE: | 82 case security_state::NONE: |
| 82 case security_state::HTTP_SHOW_WARNING: | 83 case security_state::HTTP_SHOW_WARNING: |
| 83 return toolbar::kHttpIcon; | 84 return toolbar::kHttpIcon; |
| 84 case security_state::EV_SECURE: | 85 case security_state::EV_SECURE: |
| 85 case security_state::SECURE: | 86 case security_state::SECURE: |
| 86 return toolbar::kHttpsValidIcon; | 87 return toolbar::kHttpsValidIcon; |
| 87 case security_state::SECURITY_WARNING: | 88 case security_state::SECURITY_WARNING: |
| 88 // Surface Dubious as Neutral. | 89 // Surface Dubious as Neutral. |
| 89 return toolbar::kHttpIcon; | 90 return toolbar::kHttpIcon; |
| 90 case security_state::SECURE_WITH_POLICY_INSTALLED_CERT: | 91 case security_state::SECURE_WITH_POLICY_INSTALLED_CERT: |
| 91 return toolbar::kBusinessIcon; | 92 return ui::kBusinessIcon; |
| 92 case security_state::DANGEROUS: | 93 case security_state::DANGEROUS: |
| 93 return toolbar::kHttpsInvalidIcon; | 94 return toolbar::kHttpsInvalidIcon; |
| 94 } | 95 } |
| 95 NOTREACHED(); | 96 NOTREACHED(); |
| 96 return toolbar::kHttpIcon; | 97 return toolbar::kHttpIcon; |
| 97 #else | 98 #else |
| 98 NOTREACHED(); | 99 NOTREACHED(); |
| 99 static const gfx::VectorIcon dummy = {}; | 100 static const gfx::VectorIcon dummy = {}; |
| 100 return dummy; | 101 return dummy; |
| 101 #endif | 102 #endif |
| (...skipping 27 matching lines...) Expand all Loading... |
| 129 ? IDS_DANGEROUS_VERBOSE_STATE | 130 ? IDS_DANGEROUS_VERBOSE_STATE |
| 130 : IDS_NOT_SECURE_VERBOSE_STATE); | 131 : IDS_NOT_SECURE_VERBOSE_STATE); |
| 131 default: | 132 default: |
| 132 return base::string16(); | 133 return base::string16(); |
| 133 } | 134 } |
| 134 } | 135 } |
| 135 | 136 |
| 136 bool ToolbarModelImpl::ShouldDisplayURL() const { | 137 bool ToolbarModelImpl::ShouldDisplayURL() const { |
| 137 return delegate_->ShouldDisplayURL(); | 138 return delegate_->ShouldDisplayURL(); |
| 138 } | 139 } |
| OLD | NEW |