| Index: chrome/browser/ui/views/location_bar/location_bar_view.cc
|
| diff --git a/chrome/browser/ui/views/location_bar/location_bar_view.cc b/chrome/browser/ui/views/location_bar/location_bar_view.cc
|
| index 1946e31d9e4283e5262bb20c56dfe63b8408d7ef..12a91f37d1616ab3535fc226414d9c990ca5a67a 100644
|
| --- a/chrome/browser/ui/views/location_bar/location_bar_view.cc
|
| +++ b/chrome/browser/ui/views/location_bar/location_bar_view.cc
|
| @@ -602,7 +602,7 @@ void LocationBarView::Layout() {
|
| TemplateURLServiceFactory::GetForProfile(profile())->
|
| GetTemplateURLForKeyword(keyword);
|
| if (template_url &&
|
| - (template_url->GetType() == TemplateURL::OMNIBOX_API_EXTENSION)) {
|
| + (template_url->type() == TemplateURL::OMNIBOX_API_EXTENSION)) {
|
| gfx::Image image = extensions::OmniboxAPI::Get(profile())->
|
| GetOmniboxIcon(template_url->GetExtensionId());
|
| selected_keyword_view_->SetImage(image.AsImageSkia());
|
|
|