mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Apply clang-format to all C, C++ and ObjC files (issue #2171)
This commit is contained in:
@@ -51,39 +51,27 @@ class OsrAXNode {
|
||||
CefNativeAccessible* GetNativeAccessibleObject(OsrAXNode* parent);
|
||||
|
||||
CefNativeAccessible* GetParentAccessibleObject() const {
|
||||
return parent_? parent_->platform_accessibility_ : NULL;
|
||||
return parent_ ? parent_->platform_accessibility_ : NULL;
|
||||
}
|
||||
|
||||
OsrAccessibilityHelper* GetAccessibilityHelper() const {
|
||||
return accessibility_helper_;
|
||||
};
|
||||
|
||||
int GetChildCount() const {
|
||||
return static_cast<int>(child_ids_.size());
|
||||
}
|
||||
int GetChildCount() const { return static_cast<int>(child_ids_.size()); }
|
||||
|
||||
// Return the Child at the specified index
|
||||
OsrAXNode* ChildAtIndex(int index) const;
|
||||
|
||||
const CefString& AxRole() const {
|
||||
return role_;
|
||||
}
|
||||
const CefString& AxRole() const { return role_; }
|
||||
|
||||
int OsrAXNodeId() const {
|
||||
return node_id_;
|
||||
}
|
||||
int OsrAXNodeId() const { return node_id_; }
|
||||
|
||||
const CefString& AxValue() const {
|
||||
return value_;
|
||||
}
|
||||
const CefString& AxValue() const { return value_; }
|
||||
|
||||
const CefString& AxName() const {
|
||||
return name_;
|
||||
}
|
||||
const CefString& AxName() const { return name_; }
|
||||
|
||||
const CefString& AxDescription() const {
|
||||
return description_;
|
||||
}
|
||||
const CefString& AxDescription() const { return description_; }
|
||||
|
||||
CefRect AxLocation() const;
|
||||
|
||||
|
Reference in New Issue
Block a user