diff options
Diffstat (limited to 'chromium/ppapi/proxy/ppapi_messages.h')
-rw-r--r-- | chromium/ppapi/proxy/ppapi_messages.h | 43 |
1 files changed, 42 insertions, 1 deletions
diff --git a/chromium/ppapi/proxy/ppapi_messages.h b/chromium/ppapi/proxy/ppapi_messages.h index e610cb13ba6..bf83177f6e8 100644 --- a/chromium/ppapi/proxy/ppapi_messages.h +++ b/chromium/ppapi/proxy/ppapi_messages.h @@ -159,6 +159,10 @@ IPC_ENUM_TRAITS_MAX_VALUE(PP_PdfAccessibilityScrollAlignment, PP_PDF_ACCESSIBILITYSCROLLALIGNMENT_LAST) IPC_ENUM_TRAITS_MAX_VALUE(PP_PdfAccessibilityAnnotationType, PP_PDF_ACCESSIBILITY_ANNOTATIONTYPE_LAST) +IPC_ENUM_TRAITS_MAX_VALUE(PP_PrivateChoiceFieldType, PP_PRIVATECHOICEFIELD_LAST) +IPC_ENUM_TRAITS_MIN_MAX_VALUE(PP_PrivateButtonType, + PP_PRIVATEBUTTON_FIRST, + PP_PRIVATEBUTTON_LAST) IPC_STRUCT_TRAITS_BEGIN(PP_Point) IPC_STRUCT_TRAITS_MEMBER(x) @@ -346,11 +350,48 @@ IPC_STRUCT_TRAITS_BEGIN(ppapi::PdfAccessibilityTextFieldInfo) IPC_STRUCT_TRAITS_MEMBER(bounds) IPC_STRUCT_TRAITS_END() +IPC_STRUCT_TRAITS_BEGIN(ppapi::PdfAccessibilityChoiceFieldOptionInfo) + IPC_STRUCT_TRAITS_MEMBER(name) + IPC_STRUCT_TRAITS_MEMBER(is_selected) + IPC_STRUCT_TRAITS_MEMBER(bounds) +IPC_STRUCT_TRAITS_END() + +IPC_STRUCT_TRAITS_BEGIN(ppapi::PdfAccessibilityChoiceFieldInfo) + IPC_STRUCT_TRAITS_MEMBER(name) + IPC_STRUCT_TRAITS_MEMBER(options) + IPC_STRUCT_TRAITS_MEMBER(type) + IPC_STRUCT_TRAITS_MEMBER(is_read_only) + IPC_STRUCT_TRAITS_MEMBER(is_multi_select) + IPC_STRUCT_TRAITS_MEMBER(has_editable_text_box) + IPC_STRUCT_TRAITS_MEMBER(index_in_page) + IPC_STRUCT_TRAITS_MEMBER(text_run_index) + IPC_STRUCT_TRAITS_MEMBER(bounds) +IPC_STRUCT_TRAITS_END() + +IPC_STRUCT_TRAITS_BEGIN(ppapi::PdfAccessibilityButtonInfo) + IPC_STRUCT_TRAITS_MEMBER(name) + IPC_STRUCT_TRAITS_MEMBER(value) + IPC_STRUCT_TRAITS_MEMBER(type) + IPC_STRUCT_TRAITS_MEMBER(is_read_only) + IPC_STRUCT_TRAITS_MEMBER(is_checked) + IPC_STRUCT_TRAITS_MEMBER(control_count) + IPC_STRUCT_TRAITS_MEMBER(control_index) + IPC_STRUCT_TRAITS_MEMBER(index_in_page) + IPC_STRUCT_TRAITS_MEMBER(text_run_index) + IPC_STRUCT_TRAITS_MEMBER(bounds) +IPC_STRUCT_TRAITS_END() + +IPC_STRUCT_TRAITS_BEGIN(ppapi::PdfAccessibilityFormFieldInfo) + IPC_STRUCT_TRAITS_MEMBER(text_fields) + IPC_STRUCT_TRAITS_MEMBER(choice_fields) + IPC_STRUCT_TRAITS_MEMBER(buttons) +IPC_STRUCT_TRAITS_END() + IPC_STRUCT_TRAITS_BEGIN(ppapi::PdfAccessibilityPageObjects) IPC_STRUCT_TRAITS_MEMBER(links) IPC_STRUCT_TRAITS_MEMBER(images) IPC_STRUCT_TRAITS_MEMBER(highlights) - IPC_STRUCT_TRAITS_MEMBER(text_fields) + IPC_STRUCT_TRAITS_MEMBER(form_fields) IPC_STRUCT_TRAITS_END() IPC_STRUCT_TRAITS_BEGIN(PP_URLComponent_Dev) |