| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_UI_BROWSER_COMMAND_CONTROLLER_H_ | 5 #ifndef CHROME_BROWSER_UI_BROWSER_COMMAND_CONTROLLER_H_ |
| 6 #define CHROME_BROWSER_UI_BROWSER_COMMAND_CONTROLLER_H_ | 6 #define CHROME_BROWSER_UI_BROWSER_COMMAND_CONTROLLER_H_ |
| 7 | 7 |
| 8 #include "chrome/browser/command_updater.h" | 8 #include "chrome/browser/command_updater.h" |
| 9 #include "chrome/browser/prefs/pref_change_registrar.h" | 9 #include "chrome/browser/prefs/pref_change_registrar.h" |
| 10 #include "chrome/browser/sessions/tab_restore_service_observer.h" | 10 #include "chrome/browser/sessions/tab_restore_service_observer.h" |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 void UpdateReloadStopState(bool is_loading, bool force); | 154 void UpdateReloadStopState(bool is_loading, bool force); |
| 155 | 155 |
| 156 // Add/remove observers for interstitial attachment/detachment from | 156 // Add/remove observers for interstitial attachment/detachment from |
| 157 // |contents|. | 157 // |contents|. |
| 158 void AddInterstitialObservers(TabContents* contents); | 158 void AddInterstitialObservers(TabContents* contents); |
| 159 void RemoveInterstitialObservers(TabContents* contents); | 159 void RemoveInterstitialObservers(TabContents* contents); |
| 160 | 160 |
| 161 inline BrowserWindow* window(); | 161 inline BrowserWindow* window(); |
| 162 inline Profile* profile(); | 162 inline Profile* profile(); |
| 163 | 163 |
| 164 // Check if any window is open in full screen mode. |
| 165 bool IsFullScreenWindowOpen(); |
| 166 |
| 164 Browser* browser_; | 167 Browser* browser_; |
| 165 | 168 |
| 166 // The CommandUpdater that manages the browser window commands. | 169 // The CommandUpdater that manages the browser window commands. |
| 167 CommandUpdater command_updater_; | 170 CommandUpdater command_updater_; |
| 168 | 171 |
| 169 // Indicates if command execution is blocked. | 172 // Indicates if command execution is blocked. |
| 170 bool block_command_execution_; | 173 bool block_command_execution_; |
| 171 | 174 |
| 172 // Stores the last blocked command id when |block_command_execution_| is true. | 175 // Stores the last blocked command id when |block_command_execution_| is true. |
| 173 int last_blocked_command_id_; | 176 int last_blocked_command_id_; |
| 174 | 177 |
| 175 // Stores the disposition type of the last blocked command. | 178 // Stores the disposition type of the last blocked command. |
| 176 WindowOpenDisposition last_blocked_command_disposition_; | 179 WindowOpenDisposition last_blocked_command_disposition_; |
| 177 | 180 |
| 178 content::NotificationRegistrar registrar_; | 181 content::NotificationRegistrar registrar_; |
| 179 PrefChangeRegistrar profile_pref_registrar_; | 182 PrefChangeRegistrar profile_pref_registrar_; |
| 180 PrefChangeRegistrar local_pref_registrar_; | 183 PrefChangeRegistrar local_pref_registrar_; |
| 181 | 184 |
| 182 DISALLOW_COPY_AND_ASSIGN(BrowserCommandController); | 185 DISALLOW_COPY_AND_ASSIGN(BrowserCommandController); |
| 183 }; | 186 }; |
| 184 | 187 |
| 185 } // namespace chrome | 188 } // namespace chrome |
| 186 | 189 |
| 187 #endif // CHROME_BROWSER_UI_BROWSER_COMMAND_CONTROLLER_H_ | 190 #endif // CHROME_BROWSER_UI_BROWSER_COMMAND_CONTROLLER_H_ |
| OLD | NEW |