Chromium Code Reviews| Index: content/common/view_messages.h |
| =================================================================== |
| --- content/common/view_messages.h (revision 98225) |
| +++ content/common/view_messages.h (working copy) |
| @@ -47,6 +47,9 @@ |
| struct ViewHostMsg_AccessibilityNotification_Type { |
| enum Value { |
| + // The active descendant of a node has changed. |
| + NOTIFICATION_TYPE_ACTIVE_DESCENDANT_CHANGED, |
| + |
| // The node checked state has changed. |
| NOTIFICATION_TYPE_CHECK_STATE_CHANGED, |
| @@ -56,14 +59,53 @@ |
| // The node in focus has changed. |
| NOTIFICATION_TYPE_FOCUS_CHANGED, |
| + // Page layout has completed. |
| + NOTIFICATION_TYPE_LAYOUT_COMPLETE, |
| + |
| // The document node has loaded. |
| NOTIFICATION_TYPE_LOAD_COMPLETE, |
| + // One or more selected children of this node have changed. |
| + NOTIFICATION_TYPE_SELECTED_CHILDREN_CHANGED, |
| + |
| + // The text cursor or selection changed. |
| + NOTIFICATION_TYPE_SELECTED_TEXT_CHANGED, |
| + |
| // The node value has changed. |
| NOTIFICATION_TYPE_VALUE_CHANGED, |
| - // The text cursor or selection changed. |
| - NOTIFICATION_TYPE_SELECTED_TEXT_CHANGED, |
| + // The document was scrolled to an anchor node. |
| + NOTIFICATION_TYPE_SCROLLED_TO_ANCHOR, |
| + |
| + // Content within a part of the page marked as a live region changed. |
| + NOTIFICATION_TYPE_LIVE_REGION_CHANGED, |
| + |
| + // A menu list value changed. |
| + NOTIFICATION_TYPE_MENU_LIST_VALUE_CHANGED, |
| + |
| + // The number of rows in a grid or tree control changed. |
| + NOTIFICATION_TYPE_ROW_COUNT_CHANGED, |
| + |
| + // A row in a grid or tree control was collapsed. |
| + NOTIFICATION_TYPE_ROW_COLLAPSED, |
| + |
| + // A row in a grid or tree control was expanded. |
| + NOTIFICATION_TYPE_ROW_EXPANDED, |
| + |
| + // Text was inserted in a node with text content. |
| + NOTIFICATION_TYPE_TEXT_INSERTED, |
| + |
| + // Text was removed in a node with text content. |
| + NOTIFICATION_TYPE_TEXT_REMOVED, |
| + |
| + // An object was shown. |
| + NOTIFICATION_TYPE_OBJECT_SHOW, |
| + |
| + // An object was hidden. |
| + NOTIFICATION_TYPE_OBJECT_HIDE, |
| + |
| + // An alert appeared. |
| + NOTIFICATION_TYPE_ALERT, |
|
David Tseng
2011/08/26 16:14:37
nit: sort alphabetically.
dmazzoni
2011/08/29 18:08:51
Done.
|
| }; |
| }; |
| @@ -169,6 +211,8 @@ |
| IPC_ENUM_TRAITS(ui::TextInputType) |
| IPC_ENUM_TRAITS(WebMenuItem::Type) |
| IPC_ENUM_TRAITS(WindowContainerType) |
| +IPC_ENUM_TRAITS(webkit_glue::WebAccessibility::BoolAttribute) |
| +IPC_ENUM_TRAITS(webkit_glue::WebAccessibility::FloatAttribute) |
| IPC_ENUM_TRAITS(webkit_glue::WebAccessibility::IntAttribute) |
| IPC_ENUM_TRAITS(webkit_glue::WebAccessibility::Role) |
| IPC_ENUM_TRAITS(webkit_glue::WebAccessibility::State) |
| @@ -372,11 +416,14 @@ |
| IPC_STRUCT_TRAITS_MEMBER(location) |
| IPC_STRUCT_TRAITS_MEMBER(string_attributes) |
| IPC_STRUCT_TRAITS_MEMBER(int_attributes) |
| + IPC_STRUCT_TRAITS_MEMBER(float_attributes) |
| + IPC_STRUCT_TRAITS_MEMBER(bool_attributes) |
| IPC_STRUCT_TRAITS_MEMBER(children) |
| IPC_STRUCT_TRAITS_MEMBER(indirect_child_ids) |
| IPC_STRUCT_TRAITS_MEMBER(html_attributes) |
| IPC_STRUCT_TRAITS_MEMBER(line_breaks) |
| IPC_STRUCT_TRAITS_MEMBER(cell_ids) |
| + IPC_STRUCT_TRAITS_MEMBER(unique_cell_ids) |
| IPC_STRUCT_TRAITS_END() |
| IPC_STRUCT_TRAITS_BEGIN(webkit_glue::WebCookie) |