| Index: Source/core/page/ChromeClient.h
|
| diff --git a/Source/core/page/ChromeClient.h b/Source/core/page/ChromeClient.h
|
| index 9e1d44bb7252c82d2c813420e5d79e14ff36fb9d..5ab0c86977d6b90a41cf605bec824123e45f5608 100644
|
| --- a/Source/core/page/ChromeClient.h
|
| +++ b/Source/core/page/ChromeClient.h
|
| @@ -38,7 +38,6 @@
|
| #include "platform/scroll/ScrollTypes.h"
|
| #include "wtf/Forward.h"
|
| #include "wtf/PassOwnPtr.h"
|
| -#include "wtf/UnusedParam.h"
|
| #include "wtf/Vector.h"
|
|
|
|
|
| @@ -247,7 +246,7 @@ public:
|
| PromptDialog = 2,
|
| HTMLDialog = 3
|
| };
|
| - virtual bool shouldRunModalDialogDuringPageDismissal(const DialogType&, const String& dialogMessage, Document::PageDismissalType) const { UNUSED_PARAM(dialogMessage); return true; }
|
| + virtual bool shouldRunModalDialogDuringPageDismissal(const DialogType&, const String&, Document::PageDismissalType) const { return true; }
|
|
|
| virtual void numWheelEventHandlersChanged(unsigned) = 0;
|
|
|
|
|