mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Windows: cefclient: Fix accessibility where TreeId type has changed from int to string
This commit is contained in:
committed by
Marshall Greenblatt
parent
261a8899fc
commit
ea1324a9f1
@@ -40,7 +40,7 @@ class OsrAccessibilityHelper;
|
||||
class OsrAXNode {
|
||||
public:
|
||||
// Create and return the platform specific OsrAXNode Object.
|
||||
static OsrAXNode* CreateNode(int treeId,
|
||||
static OsrAXNode* CreateNode(const CefString& treeId,
|
||||
int nodeId,
|
||||
CefRefPtr<CefDictionaryValue> value,
|
||||
OsrAccessibilityHelper* helper);
|
||||
@@ -77,7 +77,7 @@ class OsrAXNode {
|
||||
|
||||
const CefString& AxRole() const { return role_; }
|
||||
|
||||
int OsrAXTreeId() const { return tree_id_; }
|
||||
const CefString& OsrAXTreeId() const { return tree_id_; }
|
||||
|
||||
int OsrAXNodeId() const { return node_id_; }
|
||||
|
||||
@@ -96,14 +96,14 @@ class OsrAXNode {
|
||||
void SetParent(OsrAXNode* parent);
|
||||
|
||||
protected:
|
||||
OsrAXNode(int treeId,
|
||||
OsrAXNode(const CefString& treeId,
|
||||
int nodeId,
|
||||
CefRefPtr<CefDictionaryValue> value,
|
||||
OsrAccessibilityHelper* helper);
|
||||
|
||||
int tree_id_;
|
||||
CefString tree_id_;
|
||||
int node_id_;
|
||||
int child_tree_id_;
|
||||
CefString child_tree_id_;
|
||||
CefString role_;
|
||||
CefString value_;
|
||||
CefString name_;
|
||||
|
Reference in New Issue
Block a user