diff options
Diffstat (limited to 'views/view.h')
-rw-r--r-- | views/view.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/views/view.h b/views/view.h index 22c38d0..c5268c2 100644 --- a/views/view.h +++ b/views/view.h @@ -558,9 +558,14 @@ class View : public AcceleratorTarget { // TODO(klink): Move all this out to a AccessibleInfo wrapper class. // Notify the platform specific accessibility client of changes in the user - // interface. + // interface. This will always raise native notifications. virtual void NotifyAccessibilityEvent(AccessibilityTypes::Event event_type); + // Raise an accessibility notification with an option to also raise a native + // notification. + virtual void NotifyAccessibilityEvent(AccessibilityTypes::Event event_type, + bool send_native_event); + // Returns the MSAA default action of the current view. The string returned // describes the default action that will occur when executing // IAccessible::DoDefaultAction. For instance, default action of a button is |