blob: 5a9534cd7cfd41baccd16e2cd4371690c8c415f7 (
plain)
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
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CONTENT_RENDERER_ACCESSIBILITY_RENDERER_ACCESSIBILITY_H_
#define CONTENT_RENDERER_ACCESSIBILITY_RENDERER_ACCESSIBILITY_H_
#include "content/common/accessibility_messages.h"
#include "content/public/renderer/render_frame_observer.h"
#include "third_party/WebKit/public/web/WebAXObject.h"
namespace blink {
class WebDocument;
};
namespace content {
class RenderFrameImpl;
enum RendererAccessibilityType {
// Turns on Blink accessibility and provides a full accessibility
// implementation for when assistive technology is running.
RendererAccessibilityTypeComplete
};
// The browser process implement native accessibility APIs, allowing
// assistive technology (e.g., screen readers, magnifiers) to access and
// control the web contents with high-level APIs. These APIs are also used
// by automation tools, and Windows 8 uses them to determine when the
// on-screen keyboard should be shown.
//
// An instance of this class (or rather, a subclass) belongs to RenderFrameImpl.
// Accessibility is initialized based on the AccessibilityMode of
// RenderFrameImpl; it lazily starts as Off or EditableTextOnly depending on
// the operating system, and switches to Complete if assistive technology is
// detected or a flag is set.
//
// A tree of accessible objects is built here and sent to the browser process;
// the browser process maintains this as a tree of platform-native
// accessible objects that can be used to respond to accessibility requests
// from other processes.
//
// This base class just contains common code and will not do anything by itself.
// The subclass is:
//
// RendererAccessibilityComplete - turns on Blink accessibility and
// provides a full accessibility implementation for when
// assistive technology is running.
//
class CONTENT_EXPORT RendererAccessibility : public RenderFrameObserver {
public:
explicit RendererAccessibility(RenderFrameImpl* render_frame);
~RendererAccessibility() override;
// Called when an accessibility notification occurs in Blink.
virtual void HandleWebAccessibilityEvent(
const blink::WebAXObject& obj, blink::WebAXEvent event) = 0;
virtual void FocusedNodeChanged(const blink::WebNode& node) = 0;
// Gets the type of this RendererAccessibility object. Primarily intended for
// testing.
virtual RendererAccessibilityType GetType() = 0;
// This can be called before deleting a RendererAccessibility instance due
// to the accessibility mode changing, as opposed to during frame destruction
// (when there'd be no point).
virtual void DisableAccessibility() {}
protected:
// Returns the main top-level document for this page, or NULL if there's
// no view or frame.
blink::WebDocument GetMainDocument();
// The RenderFrameImpl that owns us.
RenderFrameImpl* render_frame_;
DISALLOW_COPY_AND_ASSIGN(RendererAccessibility);
};
} // namespace content
#endif // CONTENT_RENDERER_ACCESSIBILITY_RENDERER_ACCESSIBILITY_H_
|