tests: Format with clang-tidy (see #3632)

This commit is contained in:
Marshall Greenblatt
2024-01-19 21:22:56 -05:00
parent 9fd312ce04
commit 0a64bb6f9b
108 changed files with 505 additions and 647 deletions

View File

@@ -27,7 +27,7 @@ class OsrAXTree {
private:
CefString parent_tree_id_;
int root_node_id_;
int root_node_id_ = -1;
std::map<int, OsrAXNode*> node_map_;
};
@@ -71,7 +71,7 @@ class OsrAccessibilityHelper {
void DestroyNode(OsrAXNode* node);
CefString root_tree_id_;
CefString focused_tree_id_;
int focused_node_id_;
int focused_node_id_ = -1;
CefRefPtr<CefBrowser> browser_;
std::map<CefString, OsrAXTree> accessibility_node_map_;
};