| Index: ui/accessibility/platform/text_marker_helper_mac.h
|
| diff --git a/ui/accessibility/platform/text_marker_helper_mac.h b/ui/accessibility/platform/text_marker_helper_mac.h
|
| index d9303d739d28c8945ea2538c8c4ce4c1e96c2058..c4676fca85304a9d24444b186c15efd45796bb02 100644
|
| --- a/ui/accessibility/platform/text_marker_helper_mac.h
|
| +++ b/ui/accessibility/platform/text_marker_helper_mac.h
|
| @@ -34,16 +34,10 @@ AX_EXPORT
|
|
|
| - (instancetype)initWithFactory:(std::unique_ptr<ui::PositionFactory>)factory;
|
|
|
| -// Returns a text marker that points to the first character in the document that
|
| -// can be selected with VoiceOver.
|
| -- (id)startTextMarker;
|
| -
|
| -// Returns a text marker that points to the last character in the document that
|
| -// can be selected with VoiceOver.
|
| -- (id)endTextMarker;
|
| -
|
| -// Returns a text marker range corresponding to the current selection.
|
| -- (id)selectedTextMarkerRange;
|
| +// Unparameterized attributes that may be called directly.
|
| +- (id)AXEndTextMarker;
|
| +- (id)AXSelectedTextMarkerRange;
|
| +- (id)AXStartTextMarker;
|
|
|
| // Given an AXTextMarkerRangeRef, extract the stored AXPositionData for the
|
| // start and end markers. Returns NO if either marker is nil, or if the stored
|
| @@ -52,6 +46,9 @@ AX_EXPORT
|
| start:(ui::AXPositionData*)start
|
| end:(ui::AXPositionData*)end;
|
|
|
| ++ (NSArray*)getSupportedAttributes;
|
| ++ (NSArray*)getSupportedParameterizedAttributesExtended:(BOOL)extended;
|
| +
|
| @end
|
|
|
| #endif // UI_ACCESSIBILITY_PLATFORM_TEXT_MARKER_HELPER_MAC_H_
|
|
|