Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Unified Diff: content/browser/accessibility/browser_accessibility_manager.cc

Issue 2863833003: Fix primary cause of flakiness of DumpAccessibilityEvents tests on Win (Closed)
Patch Set: Fix logic Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/accessibility/browser_accessibility_manager.cc
diff --git a/content/browser/accessibility/browser_accessibility_manager.cc b/content/browser/accessibility/browser_accessibility_manager.cc
index bc5c08f97ad5f2b8ef24840c2eb4655d4e68b464..cb926b1a56ad614d5b036ef0f91e8bbcde3c0c5f 100644
--- a/content/browser/accessibility/browser_accessibility_manager.cc
+++ b/content/browser/accessibility/browser_accessibility_manager.cc
@@ -38,8 +38,6 @@ BrowserAccessibility* FindNodeWithChildTreeId(BrowserAccessibility* node,
return nullptr;
}
-} // namespace
-
// Map from AXTreeID to BrowserAccessibilityManager
using AXTreeIDMap = base::hash_map<ui::AXTreeIDRegistry::AXTreeID,
BrowserAccessibilityManager*>;
@@ -50,6 +48,11 @@ base::LazyInstance<AXTreeIDMap>::DestructorAtExit g_ax_tree_id_map =
base::LazyInstance<base::Closure>::DestructorAtExit
g_focus_change_callback_for_testing = LAZY_INSTANCE_INITIALIZER;
+// A flag for use in tests to ensure focus events aren't suppressed.
+bool g_never_suppress_focus_events_for_testing = false;
+
+} // namespace
+
ui::AXTreeUpdate MakeAXTreeUpdate(
const ui::AXNodeData& node1,
const ui::AXNodeData& node2 /* = ui::AXNodeData() */,
@@ -207,9 +210,9 @@ void BrowserAccessibilityManager::FireFocusEventsIfNeeded(
BrowserAccessibility* focus = GetFocus();
// Don't fire focus events if the window itself doesn't have focus.
- // Bypass this check if a global focus listener was set up for testing
- // so that the test passes whether the window is active or not.
- if (g_focus_change_callback_for_testing.Get().is_null()) {
+ // Bypass this check for some tests.
+ if (!g_never_suppress_focus_events_for_testing &&
+ !g_focus_change_callback_for_testing.Get()) {
if (delegate_ && !delegate_->AccessibilityViewHasFocus())
focus = nullptr;
@@ -244,7 +247,7 @@ void BrowserAccessibilityManager::FireFocusEvent(
BrowserAccessibility* node) {
NotifyAccessibilityEvent(source, ui::AX_EVENT_FOCUS, node);
- if (!g_focus_change_callback_for_testing.Get().is_null())
+ if (g_focus_change_callback_for_testing.Get())
g_focus_change_callback_for_testing.Get().Run();
}
@@ -603,6 +606,11 @@ void BrowserAccessibilityManager::SetFocusChangeCallbackForTesting(
g_focus_change_callback_for_testing.Get() = callback;
}
+// static
+void BrowserAccessibilityManager::NeverSuppressFocusEventsForTesting() {
+ g_never_suppress_focus_events_for_testing = true;
+}
+
void BrowserAccessibilityManager::Decrement(
const BrowserAccessibility& node) {
if (!delegate_)

Powered by Google App Engine
This is Rietveld 408576698