Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(756)

Unified Diff: third_party/WebKit/Source/modules/accessibility/AXLayoutObject.h

Issue 2745713002: WIP: Modified AXPosition to work with objects with both embedded object characters and text. (Closed)
Patch Set: Simplified and cleaned up selection code in Blink > Accessibility. Created 3 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/accessibility/AXLayoutObject.h
diff --git a/third_party/WebKit/Source/modules/accessibility/AXLayoutObject.h b/third_party/WebKit/Source/modules/accessibility/AXLayoutObject.h
index 1898ac0c30261b4c466bfac0f7563c47f066527a..42da93a4fe7d2ff3c5882d82493496ab188e004e 100644
--- a/third_party/WebKit/Source/modules/accessibility/AXLayoutObject.h
+++ b/third_party/WebKit/Source/modules/accessibility/AXLayoutObject.h
@@ -144,12 +144,6 @@ class MODULES_EXPORT AXLayoutObject : public AXNodeObject {
AXRelatedObjectVector*,
NameSources*) const override;
- // Methods that retrieve or manipulate the current selection.
-
- AXRange Selection() const override;
- AXRange SelectionUnderObject() const override;
- void SetSelection(const AXRange&) override;
-
// Hit testing.
AXObjectImpl* AccessibilityHitTest(const IntPoint&) const override;
AXObjectImpl* ElementAccessibilityHitTest(const IntPoint&) const override;
@@ -213,7 +207,6 @@ class MODULES_EXPORT AXLayoutObject : public AXNodeObject {
bool ElementAttributeValue(const QualifiedName&) const;
LayoutRect ComputeElementRect() const;
- AXRange TextControlSelection() const;
int IndexForVisiblePosition(const VisiblePosition&) const;
AXLayoutObject* GetUnignoredObjectFromNode(Node&) const;
};

Powered by Google App Engine
This is Rietveld 408576698