Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions DEPS
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
# found in the LICENSE file.

deps = {
'src/third_party/rapidjson': 'https://fuchsia.googlesource.com/third_party/rapidjson@ef3564c5c8824989393b87df25355baf35ff544b',
'src/third_party/rapidjson': 'https://flutter.googlesource.com/third_party/rapidjson@47253cab97e9cfe99dbd6b90836fc11589d7d802',
'src/third_party/libcxx': 'https://llvm.googlesource.com/llvm-project/libcxx@bd557f6f764d1e40b62528a13b124ce740624f8f',
'src/third_party/libcxxabi': 'https://llvm.googlesource.com/llvm-project/libcxxabi@a4dda1589d37a7e4b4f7a81ebad01b1083f2e726',
'src/third_party/googletest': 'https://github.com/google/googletest@7f036c5563af7d0329f20e8bb42effb04629f0c0',
'src/third_party/dart': 'https://dart.googlesource.com/sdk.git@e927f58e327ae13d056a16bb2ebf618e071c20a7',
'src/third_party/googletest': 'https://github.com/google/googletest@e9907112b47255d50b4d343e7e2160bce8dc85d1',
'src/third_party/dart': 'https://dart.googlesource.com/sdk.git@d684a576a6aa954ae107a03b2b4e1d61c3bebe93',
'src/third_party/clang': {
'packages': [
{
'package': 'fuchsia/third_party/clang/linux-amd64',
'version': 'git_revision:8c7a2ce01a77c96028fe2c8566f65c45ad9408d3'
'version': 'git_revision:80743bd43fd5b38fedc503308e7a652e23d3ec93'
}
],
'dep_type': 'cipd',
Expand Down
5 changes: 3 additions & 2 deletions flutter/shell/platform/common/accessibility_bridge.cc
Original file line number Diff line number Diff line change
Expand Up @@ -443,8 +443,9 @@ void AccessibilityBridge::SetBooleanAttributesFromFlutterUpdate(
// TODO(chunhtai): figure out if there is a node that does not clip overflow.
node_data.AddBoolAttribute(ax::mojom::BoolAttribute::kClipsChildren,
!node.children_in_traversal_order.empty());
node_data.AddBoolAttribute(ax::mojom::BoolAttribute::kSelected,
flags->is_selected);
node_data.AddBoolAttribute(
ax::mojom::BoolAttribute::kSelected,
flags->is_selected == FlutterTristate::kFlutterTristateTrue);
node_data.AddBoolAttribute(ax::mojom::BoolAttribute::kEditableRoot,
flags->is_text_field && !flags->is_read_only);
// Mark nodes as line breaking so that screen readers don't
Expand Down
4 changes: 2 additions & 2 deletions flutter/shell/platform/common/path_utils.cc
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ std::filesystem::path GetExecutableDirectory() {
std::filesystem::path executable_path(buffer);
return executable_path.remove_filename();
#elif defined(__linux__)
char buffer[PATH_MAX + 1];
char buffer[PATH_MAX];
ssize_t length = readlink("/proc/self/exe", buffer, sizeof(buffer));
if (length > PATH_MAX) {
if (length < 0) {
Comment thread
JSUYA marked this conversation as resolved.
return std::filesystem::path();
}
std::filesystem::path executable_path(std::string(buffer, length));
Expand Down
Loading