blob: 49adba45555811bd7958fda99d2344694033031c (
plain) (
tree)
|
|
diff --git a/ui/accessibility/platform/ax_platform_node_auralinux.cc b/ui/accessibility/platform/ax_platform_node_auralinux.cc
index aff693dea..834c328d1 100644
--- a/ui/accessibility/platform/ax_platform_node_auralinux.cc
+++ b/ui/accessibility/platform/ax_platform_node_auralinux.cc
@@ -5136,8 +5136,8 @@ std::pair<int, int> AXPlatformNodeAuraLinux::GetSelectionOffsetsForAtk() {
std::vector<ax::mojom::Action> AXPlatformNodeAuraLinux::GetSupportedActions()
const {
static const base::NoDestructor<std::vector<ax::mojom::Action>>
- kActionsThatCanBeExposedViaAtkAction(
- {ax::mojom::Action::kDecrement, ax::mojom::Action::kIncrement});
+ kActionsThatCanBeExposedViaAtkAction{
+ {ax::mojom::Action::kDecrement, ax::mojom::Action::kIncrement}};
// The default action is always included and exposed at the first index.
std::vector<ax::mojom::Action> supported_actions = {
|