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 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
|
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_RENDERER_ACCESSIBILITY_RENDER_ACCESSIBILITY_MANAGER_H_
#define CONTENT_RENDERER_ACCESSIBILITY_RENDER_ACCESSIBILITY_MANAGER_H_
#include <memory>
#include "base/memory/raw_ptr.h"
#include "content/common/content_export.h"
#include "mojo/public/cpp/bindings/associated_receiver.h"
#include "mojo/public/cpp/bindings/pending_associated_receiver.h"
#include "mojo/public/cpp/bindings/remote.h"
#include "third_party/blink/public/mojom/render_accessibility.mojom.h"
#include "ui/accessibility/ax_action_data.h"
#include "ui/accessibility/ax_enums.mojom-forward.h"
#include "ui/accessibility/ax_event.h"
#include "ui/accessibility/ax_mode.h"
#include "ui/accessibility/ax_tree_id.h"
#include "ui/accessibility/ax_tree_update.h"
namespace content {
class RenderFrameImpl;
class RenderAccessibilityImpl;
// This class implements the RenderAccessibility mojo interface that the browser
// process uses to communicate with the renderer for any accessibility-related
// operations such as enabling/disabling accessibility support in the renderer,
// requesting snapshots of the accessibility tree or performing actions.
//
// Instances of this class will be owned by one RenderFrameImpl object, which
// will keep it alive for its entire lifetime. In addition, this class will own
// an instance of the RenderAccessibilityImpl class, which will only be alive
// while accessibility support in the renderer is enabled (i.e whenever the
// ui::AXMode set from the browser includes the |kWebContents| mode).
//
// Thus, when renderer accessibility is enabled, |render_accessibility_| will
// point to a valid RenderAccessibilityImpl object which will be used to enable
// bi-directional communication between the RenderFrameHostImpl object in the
// browser process and Blink.
class CONTENT_EXPORT RenderAccessibilityManager
: public blink::mojom::RenderAccessibility {
public:
RenderAccessibilityManager(RenderFrameImpl* const render_frame);
RenderAccessibilityManager(const RenderAccessibilityManager&) = delete;
RenderAccessibilityManager& operator=(const RenderAccessibilityManager&) =
delete;
~RenderAccessibilityManager() override;
// Binds the |receiver| to process mojo messages. This method is expected to
// be called only while |receiver_| is in an unbound state.
void BindReceiver(
mojo::PendingAssociatedReceiver<blink::mojom::RenderAccessibility>
receiver);
// Returns a pointer to the RenderAccessibilityImpl object owned by this
// class. Can return nullptr if accessibility is not enabled in the renderer.
RenderAccessibilityImpl* GetRenderAccessibilityImpl();
// Returns the current accessibility mode for the associated RenderFrameImpl.
ui::AXMode GetAccessibilityMode() const;
// mojom::RenderAccessibility implementation.
void SetMode(const ui::AXMode& ax_mode, uint32_t reset_token) override;
void FatalError() override;
void HitTest(
const gfx::Point& point,
ax::mojom::Event event_to_fire,
int request_id,
blink::mojom::RenderAccessibility::HitTestCallback callback) override;
void PerformAction(const ui::AXActionData& data) override;
void Reset(uint32_t reset_token) override;
// Communication with the browser process.
void HandleAccessibilityEvents(
blink::mojom::AXUpdatesAndEventsPtr updates_and_events,
uint32_t reset_token,
blink::mojom::RenderAccessibilityHost::HandleAXEventsCallback callback);
void CloseConnection();
private:
// Returns the associated remote used to send messages to the browser process,
// lazily initializing it the first time it's used.
mojo::Remote<blink::mojom::RenderAccessibilityHost>&
GetOrCreateRemoteRenderAccessibilityHost();
// The RenderFrameImpl that owns us.
raw_ptr<RenderFrameImpl, ExperimentalRenderer> render_frame_;
// Valid only while an accessibility mode including kWebContents is set.
std::unique_ptr<RenderAccessibilityImpl> render_accessibility_;
// Endpoint to receive and handle messages from the browser process.
mojo::AssociatedReceiver<blink::mojom::RenderAccessibility> receiver_{this};
// Endpoint to send messages to the browser process.
mojo::Remote<blink::mojom::RenderAccessibilityHost>
render_accessibility_host_;
};
} // namespace content
#endif // CONTENT_RENDERER_ACCESSIBILITY_RENDER_ACCESSIBILITY_MANAGER_H_
|