diff options
Diffstat (limited to 'chrome/browser/ui/browser.h')
-rw-r--r-- | chrome/browser/ui/browser.h | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/chrome/browser/ui/browser.h b/chrome/browser/ui/browser.h index 60ac1ea..2766b78 100644 --- a/chrome/browser/ui/browser.h +++ b/chrome/browser/ui/browser.h @@ -293,13 +293,6 @@ class Browser : public TabStripModelObserver, // Gives beforeunload handlers the chance to cancel the close. bool ShouldCloseWindow(); - // Figure out if there are tabs that have beforeunload handlers. - // It starts beforeunload/unload processing as a side-effect. - bool TabsNeedBeforeUnloadFired(); - - // Returns true if all tabs' beforeunload/unload events have fired. - bool HasCompletedUnloadProcessing() const; - bool IsAttemptingToCloseBrowser() const; // Invoked when the window containing us is closing. Performs the necessary @@ -437,6 +430,9 @@ class Browser : public TabStripModelObserver, content::WebContents* source, const content::NativeWebKeyboardEvent& event) OVERRIDE; + // Figure out if there are tabs that have beforeunload handlers. + bool TabsNeedBeforeUnloadFired(); + bool is_type_tabbed() const { return type_ == TYPE_TABBED; } bool is_type_popup() const { return type_ == TYPE_POPUP; } |