| Index: content/renderer/input/input_event_filter.cc
|
| diff --git a/content/renderer/input/input_event_filter.cc b/content/renderer/input/input_event_filter.cc
|
| index c85586272fd1a36742db5e8fda60b93802b6c9fe..927a402b0eecd2c7ca79b4e47e8fdcde453325c6 100644
|
| --- a/content/renderer/input/input_event_filter.cc
|
| +++ b/content/renderer/input/input_event_filter.cc
|
| @@ -26,8 +26,9 @@ using blink::WebInputEvent;
|
|
|
| #include "ipc/ipc_message_null_macros.h"
|
| #undef IPC_MESSAGE_DECL
|
| -#define IPC_MESSAGE_DECL(kind, type, name, in, out, ilist, olist) \
|
| - case name::ID: return #name;
|
| +#define IPC_MESSAGE_DECL(name, ...) \
|
| + case name::ID: \
|
| + return #name;
|
|
|
| const char* GetInputMessageTypeName(const IPC::Message& message) {
|
| switch (message.type()) {
|
|
|