Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 75f4ba5

Browse files
Licenses
1 parent 6e162c6 commit 75f4ba5

8 files changed

+10
-9
lines changed

third_party/accessibility/ax/ax_position.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1331,8 +1331,7 @@ class AXPosition {
13311331
child_position->affinity_ = ax::mojom::TextAffinity::kUpstream;
13321332
break;
13331333
}
1334-
AXPositionInstance child = text_position->CreateChildPositionAt(i);
1335-
child_position = std::move(child);
1334+
child_position = std::move(text_position->CreateChildPositionAt(i));
13361335
adjusted_offset -= max_text_offset_in_parent;
13371336
}
13381337

third_party/accessibility/ax/platform/ax_platform_node_textprovider_win.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2019 The Chromium Authors
1+
// Copyright 2019 The Chromium Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style license that can be
33
// found in the LICENSE file.
44

third_party/accessibility/ax/platform/ax_platform_node_textprovider_win.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2019 The Chromium Authors
1+
// Copyright 2019 The Chromium Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style license that can be
33
// found in the LICENSE file.
44

third_party/accessibility/ax/platform/ax_platform_node_textprovider_win_unittest.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2019 The Chromium Authors
1+
// Copyright 2019 The Chromium Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style license that can be
33
// found in the LICENSE file.
44

third_party/accessibility/ax/platform/ax_platform_node_textrangeprovider_win.cc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2019 The Chromium Authors
1+
// Copyright 2019 The Chromium Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style license that can be
33
// found in the LICENSE file.
44

@@ -1035,6 +1035,8 @@ HRESULT AXPlatformNodeTextRangeProviderWin::GetChildren(SAFEARRAY** children) {
10351035

10361036
SAFEARRAY* safe_array = SafeArrayCreateVector(VT_UNKNOWN, 0, 0);
10371037

1038+
// TODO(schectman): Implement GetUIADirectChildrenInRange for FlutterPlatformNodeDelegate
1039+
10381040
*children = safe_array;
10391041
return S_OK;
10401042
}

third_party/accessibility/ax/platform/ax_platform_node_textrangeprovider_win.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2019 The Chromium Authors
1+
// Copyright 2019 The Chromium Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style license that can be
33
// found in the LICENSE file.
44

third_party/accessibility/ax/platform/ax_platform_node_textrangeprovider_win_unittest.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2019 The Chromium Authors
1+
// Copyright 2019 The Chromium Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style license that can be
33
// found in the LICENSE file.
44

third_party/accessibility/ax/platform/ax_platform_tree_manager.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2019 The Chromium Authors
1+
// Copyright 2019 The Chromium Authors. All rights reserved.
22
// Use of this source code is governed by a BSD-style license that can be
33
// found in the LICENSE file.
44

0 commit comments

Comments
 (0)