| Index: components/toolbar/toolbar_model_impl.cc
|
| diff --git a/components/toolbar/toolbar_model_impl.cc b/components/toolbar/toolbar_model_impl.cc
|
| index 16e25b08081d25096220825cebf1df2bf7e52f32..abb1a59cb35002a367485d4f0ac93bfd4827a6b9 100644
|
| --- a/components/toolbar/toolbar_model_impl.cc
|
| +++ b/components/toolbar/toolbar_model_impl.cc
|
| @@ -73,6 +73,7 @@ SecurityStateModel::SecurityLevel ToolbarModelImpl::GetSecurityLevel(
|
| int ToolbarModelImpl::GetIcon() const {
|
| switch (GetSecurityLevel(false)) {
|
| case SecurityStateModel::NONE:
|
| + case SecurityStateModel::HTTP_WARNING:
|
| return IDR_LOCATION_BAR_HTTP;
|
| case SecurityStateModel::EV_SECURE:
|
| case SecurityStateModel::SECURE:
|
| @@ -94,6 +95,7 @@ gfx::VectorIconId ToolbarModelImpl::GetVectorIcon() const {
|
| #if !defined(OS_ANDROID) && !defined(OS_IOS)
|
| switch (GetSecurityLevel(false)) {
|
| case SecurityStateModel::NONE:
|
| + case SecurityStateModel::HTTP_WARNING:
|
| return gfx::VectorIconId::LOCATION_BAR_HTTP;
|
| case SecurityStateModel::EV_SECURE:
|
| case SecurityStateModel::SECURE:
|
|
|