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

Unified Diff: content/browser/accessibility/browser_accessibility_com_win.h

Issue 2975413002: Move ia2_attributes handling to AXPlatformNodeWin. (Closed)
Patch Set: Suggestions from dmazzoni Created 3 years, 5 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
« no previous file with comments | « no previous file | content/browser/accessibility/browser_accessibility_com_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/accessibility/browser_accessibility_com_win.h
diff --git a/content/browser/accessibility/browser_accessibility_com_win.h b/content/browser/accessibility/browser_accessibility_com_win.h
index 28397d319bda286c3cce7cb29799a73c45ed34f2..6d3f37906b7f2027dc4d15efaa9759a0a027fdfe 100644
--- a/content/browser/accessibility/browser_accessibility_com_win.h
+++ b/content/browser/accessibility/browser_accessibility_com_win.h
@@ -788,19 +788,6 @@ class __declspec(uuid("562072fe-3390-43b1-9e2c-dd4118f5ac79"))
// Sets the selection given a start and end offset in IA2 Hypertext.
void SetIA2HypertextSelection(LONG start_offset, LONG end_offset);
- // If the string attribute |attribute| is present, add its value as an
- // IAccessible2 attribute with the name |ia2_attr|.
- void StringAttributeToIA2(ui::AXStringAttribute attribute,
- const char* ia2_attr);
-
- // If the bool attribute |attribute| is present, add its value as an
- // IAccessible2 attribute with the name |ia2_attr|.
- void BoolAttributeToIA2(ui::AXBoolAttribute attribute, const char* ia2_attr);
-
- // If the int attribute |attribute| is present, add its value as an
- // IAccessible2 attribute with the name |ia2_attr|.
- void IntAttributeToIA2(ui::AXIntAttribute attribute, const char* ia2_attr);
-
//
// Helper methods for IA2 hyperlinks.
//
@@ -850,13 +837,6 @@ class __declspec(uuid("562072fe-3390-43b1-9e2c-dd4118f5ac79"))
// selection.)
void GetSelectionOffsets(int* selection_start, int* selection_end) const;
- // Get the range value text, which might come from aria-valuetext or
- // a floating-point value. This is different from the value string
- // attribute used in input controls such as text boxes and combo boxes.
- base::string16 GetRangeValueText();
-
- // Return true for roles that support the value interface
- bool IsRangeValueSupported();
bool IsSameHypertextCharacter(size_t old_char_index, size_t new_char_index);
void ComputeHypertextRemovedAndInserted(int* start,
@@ -911,9 +891,6 @@ class __declspec(uuid("562072fe-3390-43b1-9e2c-dd4118f5ac79"))
void RemoveTargetFromRelation(const base::string16& relation_type,
int target_id);
- // Updates object attributes of IA2 with html attributes.
- void UpdateRequiredAttributes();
-
// Fire a Windows-specific accessibility event notification on this node.
void FireNativeEvent(LONG win_event_type) const;
struct WinAttributes {
« no previous file with comments | « no previous file | content/browser/accessibility/browser_accessibility_com_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698