| Index: chrome/browser/ui/fast_unload_controller.h
|
| diff --git a/chrome/browser/ui/fast_unload_controller.h b/chrome/browser/ui/fast_unload_controller.h
|
| index a3ebc37555e9b91fd6c0ac27a064b833b4edf23f..25b12d5742af3407c51b1d0ac43a8113b2378a4b 100644
|
| --- a/chrome/browser/ui/fast_unload_controller.h
|
| +++ b/chrome/browser/ui/fast_unload_controller.h
|
| @@ -66,11 +66,11 @@ class FastUnloadController : public content::NotificationObserver,
|
| bool CanCloseContents(content::WebContents* contents);
|
|
|
| // Returns true if we need to run unload events for the |contents|.
|
| - static bool ShouldRunUnloadEventsHelper(content::WebContents* contents);
|
| + bool ShouldRunUnloadEventsHelper(content::WebContents* contents);
|
|
|
| // Helper function to run beforeunload listeners on a WebContents.
|
| // Returns true if |contents| beforeunload listeners were invoked.
|
| - static bool RunUnloadEventsHelper(content::WebContents* contents);
|
| + bool RunUnloadEventsHelper(content::WebContents* contents);
|
|
|
| // Called when a BeforeUnload handler is fired for |contents|. |proceed|
|
| // indicates the user's response to the Y/N BeforeUnload handler dialog. If
|
|
|