diff options
Diffstat (limited to 'content/common/view_messages.h')
-rw-r--r-- | content/common/view_messages.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/content/common/view_messages.h b/content/common/view_messages.h index 4605b46..66aa5af 100644 --- a/content/common/view_messages.h +++ b/content/common/view_messages.h @@ -347,9 +347,6 @@ IPC_STRUCT_BEGIN(ViewHostMsg_TextInputState_Params) // The type of input field IPC_STRUCT_MEMBER(ui::TextInputType, type) - // The mode of input field - IPC_STRUCT_MEMBER(ui::TextInputMode, mode) - // The flags of the input field (autocorrect, autocomplete, etc.) IPC_STRUCT_MEMBER(int, flags) @@ -1366,6 +1363,11 @@ IPC_MESSAGE_ROUTED1(ViewHostMsg_TakeFocus, IPC_MESSAGE_ROUTED1(ViewHostMsg_OpenDateTimeDialog, ViewHostMsg_DateTimeDialogValue_Params /* value */) +IPC_MESSAGE_ROUTED3(ViewHostMsg_TextInputTypeChanged, + ui::TextInputType /* TextInputType of the focused node */, + ui::TextInputMode /* TextInputMode of the focused node */, + bool /* can_compose_inline in the focused node */) + // Required for updating text input state. IPC_MESSAGE_ROUTED1(ViewHostMsg_TextInputStateChanged, ViewHostMsg_TextInputState_Params /* input state params */) |