| 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 17773650d76236cfbd3c780fac865937d6d59432..10521d5774c73d68f0c00411e9dcc05be7fce0cc 100644
|
| --- a/content/renderer/input/input_event_filter.cc
|
| +++ b/content/renderer/input/input_event_filter.cc
|
| @@ -31,21 +31,7 @@
|
| using blink::WebInputEvent;
|
| using ui::DidOverscrollParams;
|
|
|
| -#include "ipc/ipc_message_null_macros.h"
|
| -#undef IPC_MESSAGE_DECL
|
| -#define IPC_MESSAGE_DECL(name, ...) \
|
| - case name::ID: \
|
| - return #name;
|
| -
|
| -const char* GetInputMessageTypeName(const IPC::Message& message) {
|
| - switch (message.type()) {
|
| -#include "content/common/input_messages.h"
|
| - default:
|
| - NOTREACHED() << "Invalid message type: " << message.type();
|
| - break;
|
| - };
|
| - return "NonInputMsgType";
|
| -}
|
| +const char* GetInputMessageTypeName(const IPC::Message& message);
|
|
|
| namespace content {
|
|
|
|
|