| Index: content/browser/accessibility/browser_accessibility_manager.h
|
| diff --git a/content/browser/accessibility/browser_accessibility_manager.h b/content/browser/accessibility/browser_accessibility_manager.h
|
| index a1b4922047ad698f93f05f430d4b6b8baecfc81a..a0bb255b8e5320ee1e69bfa70b61bb9d939afd7a 100644
|
| --- a/content/browser/accessibility/browser_accessibility_manager.h
|
| +++ b/content/browser/accessibility/browser_accessibility_manager.h
|
| @@ -183,6 +183,12 @@ class CONTENT_EXPORT BrowserAccessibilityManager : public ui::AXTreeDelegate {
|
| // in any BrowserAccessibilityManager.
|
| static void SetFocusChangeCallbackForTesting(const base::Closure& callback);
|
|
|
| + // Normally we avoid firing accessibility focus events when the containing
|
| + // native window isn't focused. However, this can lead to test flakiness
|
| + // because we can't control when a window loses focus, so this provides a
|
| + // way to disable that check for tests.
|
| + static void NeverSuppressFocusEventsForTesting();
|
| +
|
| // Accessibility actions. All of these are implemented asynchronously
|
| // by sending a message to the renderer to perform the respective action
|
| // on the given node. See the definition of |ui::AXActionData| for more
|
|
|