Chromium Code Reviews| Index: chrome/browser/ui/browser.cc |
| diff --git a/chrome/browser/ui/browser.cc b/chrome/browser/ui/browser.cc |
| index 0dbe830eef46dd802465ba64422515169c6f4a45..b290c5fb860b49d145351368c1d19feb6d8c8aa7 100644 |
| --- a/chrome/browser/ui/browser.cc |
| +++ b/chrome/browser/ui/browser.cc |
| @@ -4880,6 +4880,9 @@ void Browser::RegisterAppPrefs(const std::string& app_name, Profile* profile) { |
| void Browser::ReloadInternal(WindowOpenDisposition disposition, |
| bool ignore_cache) { |
| + if (fullscreen_controller_->HandleUserPressedReload()) |
| + return; |
|
yzshen1
2012/06/18 16:22:05
Why the following actions are not needed when full
|
| + |
| // If we are showing an interstitial, treat this as an OpenURL. |
| WebContents* current_tab = GetActiveWebContents(); |
| if (current_tab && current_tab->ShowingInterstitialPage()) { |