| Index: chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm
 | 
| diff --git a/chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm b/chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm
 | 
| index 8d7c1b22b3df8b891f3f7ff96bc2714233763c11..178a354ece0de5b2b6affb776afb6632133fce9c 100644
 | 
| --- a/chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm
 | 
| +++ b/chrome/browser/ui/cocoa/location_bar/location_bar_view_mac.mm
 | 
| @@ -434,8 +434,8 @@ void LocationBarViewMac::Layout() {
 | 
|      selected_keyword_decoration_->SetVisible(true);
 | 
|      selected_keyword_decoration_->SetKeyword(short_name, is_extension_keyword);
 | 
|      selected_keyword_decoration_->SetImage(GetKeywordImage(keyword));
 | 
| -  } else if ((GetToolbarModel()->GetSecurityLevel(false) ==
 | 
| -              ConnectionSecurityHelper::EV_SECURE)) {
 | 
| +  } else if (GetToolbarModel()->GetSecurityLevel(false) ==
 | 
| +             connection_security::EV_SECURE) {
 | 
|      // Switch from location icon to show the EV bubble instead.
 | 
|      location_icon_decoration_->SetVisible(false);
 | 
|      ev_bubble_decoration_->SetVisible(true);
 | 
| 
 |