Index: content/common/input_messages.h |
diff --git a/content/common/input_messages.h b/content/common/input_messages.h |
index 5d2e3ed18090102eabe1aea214056633d4783863..af4600e75ad421301678f045d244dbc42e6fa8f4 100644 |
--- a/content/common/input_messages.h |
+++ b/content/common/input_messages.h |
@@ -11,10 +11,8 @@ |
#include "content/common/content_param_traits.h" |
#include "content/common/edit_command.h" |
#include "content/common/input/input_event.h" |
-#include "content/common/input/input_event_disposition.h" |
#include "content/common/input/input_param_traits.h" |
#include "content/common/input/ipc_input_event_payload.h" |
-#include "content/common/input/event_packet.h" |
#include "content/port/common/input_event_ack_state.h" |
#include "content/public/common/common_param_traits.h" |
#include "ipc/ipc_message_macros.h" |
@@ -36,8 +34,6 @@ IPC_ENUM_TRAITS_MAX_VALUE(content::InputEvent::Payload::Type, |
content::InputEvent::Payload::PAYLOAD_TYPE_MAX) |
IPC_ENUM_TRAITS_MAX_VALUE(content::InputEventAckState, |
content::INPUT_EVENT_ACK_STATE_MAX) |
-IPC_ENUM_TRAITS_MAX_VALUE(content::InputEventDisposition, |
- content::INPUT_EVENT_DISPOSITION_MAX) |
IPC_STRUCT_TRAITS_BEGIN(content::EditCommand) |
IPC_STRUCT_TRAITS_MEMBER(name) |
@@ -54,11 +50,6 @@ IPC_MESSAGE_ROUTED3(InputMsg_HandleInputEvent, |
ui::LatencyInfo /* latency_info */, |
bool /* is_keyboard_shortcut */) |
-// Sends an event packet to the render widget. |
-IPC_MESSAGE_ROUTED2(InputMsg_HandleEventPacket, |
- content::EventPacket /* event_packet */, |
- content::InputEventDispositions /* dispositions */) |
- |
// Sends the cursor visibility state to the render widget. |
IPC_MESSAGE_ROUTED1(InputMsg_CursorVisibilityChange, |
bool /* is_visible */) |
@@ -150,10 +141,6 @@ IPC_MESSAGE_ROUTED3(InputHostMsg_HandleInputEvent_ACK, |
content::InputEventAckState /* ack_result */, |
ui::LatencyInfo /* latency_info */) |
-IPC_MESSAGE_ROUTED2(InputHostMsg_HandleEventPacket_ACK, |
- int64 /* event_packet_id */, |
- content::InputEventDispositions /* dispositions */) |
- |
// Adding a new message? Stick to the sort order above: first platform |
// independent InputMsg, then ifdefs for platform specific InputMsg, then |