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

[Windows] Revert UIA #40062

Merged
merged 1 commit into from
Mar 3, 2023
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
7 changes: 1 addition & 6 deletions shell/platform/windows/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -122,10 +122,7 @@ source_set("flutter_windows_source") {

public_configs = [ ":relative_angle_headers" ]

defines = [
"FLUTTER_ENGINE_NO_PROTOTYPES",
"FLUTTER_ENGINE_USE_UIA",
]
defines = [ "FLUTTER_ENGINE_NO_PROTOTYPES" ]

public_deps = [
"//flutter/fml:string_conversion",
Expand Down Expand Up @@ -230,8 +227,6 @@ executable("flutter_windows_unittests") {

public_configs = [ "//flutter:config" ]

defines = [ "FLUTTER_ENGINE_USE_UIA" ]

deps = [
":flutter_windows_fixtures",
":flutter_windows_headers",
Expand Down
2 changes: 1 addition & 1 deletion shell/platform/windows/window_unittests.cc
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ TEST(MockWindow, UnknownPointerTypeSkipsDirectManipulation) {
}

// Test that the root UIA object is queried by WM_GETOBJECT.
TEST(MockWindow, GetObjectUia) {
TEST(MockWindow, DISABLED_GetObjectUia) {
MockWindow window;
bool uia_called = false;
ON_CALL(window, OnGetObject)
Expand Down