| Index: third_party/WebKit/public/web/WebFrameClient.h
|
| diff --git a/third_party/WebKit/public/web/WebFrameClient.h b/third_party/WebKit/public/web/WebFrameClient.h
|
| index 0493b746bc2c5ac380cc2b736505ab4604d1fa06..4741cd84d86d1c23dae5217c870f54114f3b428e 100644
|
| --- a/third_party/WebKit/public/web/WebFrameClient.h
|
| +++ b/third_party/WebKit/public/web/WebFrameClient.h
|
| @@ -400,12 +400,10 @@ public:
|
| const WebString& message, const WebString& defaultValue,
|
| WebString* actualValue) { return false; }
|
|
|
| - // Displays a modal confirmation dialog containing the given message as
|
| - // description and OK/Cancel choices, where 'OK' means that it is okay
|
| - // to proceed with closing the view. Returns true if the user selects
|
| - // 'OK' or false otherwise.
|
| - virtual bool runModalBeforeUnloadDialog(
|
| - bool isReload, const WebString& message) { return true; }
|
| + // Displays a modal confirmation dialog with OK/Cancel choices, where 'OK'
|
| + // means that it is okay to proceed with closing the view. Returns true if
|
| + // the user selects 'OK' or false otherwise.
|
| + virtual bool runModalBeforeUnloadDialog(bool isReload) { return true; }
|
|
|
|
|
| // UI ------------------------------------------------------------------
|
|
|