| Index: chrome/browser/ui/unload_controller.h
|
| diff --git a/chrome/browser/ui/unload_controller.h b/chrome/browser/ui/unload_controller.h
|
| index a989b26a94418480182f85302641b345ba2e3c7c..cfb4743c092ba8883e38631f06c15f361a5f86c1 100644
|
| --- a/chrome/browser/ui/unload_controller.h
|
| +++ b/chrome/browser/ui/unload_controller.h
|
| @@ -38,11 +38,11 @@ class UnloadController : 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
|
|
|