Chromium Code Reviews| Index: chrome/browser/ui/browser_instant_controller.cc |
| diff --git a/chrome/browser/ui/browser_instant_controller.cc b/chrome/browser/ui/browser_instant_controller.cc |
| index 0b106265f4dcbe253b296adfc5f639e33df3cfbc..4b5daf91e834945bb395e8231ce4dda8d6d8311d 100644 |
| --- a/chrome/browser/ui/browser_instant_controller.cc |
| +++ b/chrome/browser/ui/browser_instant_controller.cc |
| @@ -56,7 +56,7 @@ class TabReloader : public content::WebContentsUserData<TabReloader> { |
| ~TabReloader() override {} |
| void ReloadImpl() { |
| - web_contents_->GetController().Reload(false); |
| + web_contents_->GetController().Reload(content::ReloadType::NORMAL, false); |
|
Takashi Toyoshima
2016/12/15 06:21:51
This is used only for NTP reload on changing searc
|
| // As the reload was not triggered by the user we don't want to close any |
| // infobars. We have to tell the InfoBarService after the reload, |