1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef UI_BASE_COCOA_ACCESSIBILITY_FOCUS_OVERRIDER_H_
#define UI_BASE_COCOA_ACCESSIBILITY_FOCUS_OVERRIDER_H_
#include "base/component_export.h"
#include "base/memory/raw_ptr.h"
namespace ui {
// This object is used to enable cross-process accessibility focus querying.
//
// The following bullet points describe the need for this class:
// * The NSViews in out-of-process NSViews (e.g, for PWAs) will return a
// NSRemoteAccessibilityElement from -[NSView accessibilityFocusedUIElement].
// * The focus query is then continued in the browser process by a call to
// -[NSApplication accessibilityFocusedUIElement].
// * The default implementation -[NSApplication accessibilityFocusedUIElement]
// in turn queries -[NSApplication keyWindow]'s accessibilityFocusedUIElement
// method.
// * This is not what the PWA process wants. The PWA process wants its focus,
// not the browser's focus.
// * To make this happen, when the PWA process' NSViews are focused, they
// force the browser's -[NSApplication accessibilityFocusedUIElement] to
// return their accessibility focus.
//
// The above-required overriding of focus is done by instantiating an
// AccessibilityFocusOverrider and updating its state when the NSView in the
// PWA process is focused.
class COMPONENT_EXPORT(UI_BASE) AccessibilityFocusOverrider {
public:
class Client {
public:
virtual id GetAccessibilityFocusedUIElement() = 0;
};
AccessibilityFocusOverrider(Client* client);
~AccessibilityFocusOverrider();
// Indicate if the NSApplication that is viewing this element is not this
// process. Focus overriding is only needed for cross-process focus.
void SetAppIsRemote(bool app_is_remote);
// Indicate whether or not the view's window is currently key. This object
// will override the application's focused accessibility element only if its
// window is key (and the view is the window's first responder).
void SetWindowIsKey(bool window_is_key);
// Indicate whether or not the view is its window's first responder. This
// object will override the application's focused accessibility element only
// if the view is the window's first responder (and its window is key).
void SetViewIsFirstResponder(bool view_is_first_responder);
// Return the overridden focus, or nil if there is no overridden focus.
static id GetFocusedUIElement();
private:
void UpdateOverriddenKeyElement();
bool app_is_remote_ = false;
bool window_is_key_ = false;
bool view_is_first_responder_ = false;
const raw_ptr<Client> client_;
};
} // namespace ui
#endif // UI_BASE_COCOA_ACCESSIBILITY_FOCUS_OVERRIDER_H_
|