blob: 4f05a31e4d4692d41efc10638b50444c02663e22 (
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
82
83
84
85
|
// 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_RENDERER_ACCESSIBILITY_H_
#define CONTENT_RENDERER_RENDERER_ACCESSIBILITY_H_
#pragma once
#include "content/common/accessibility_messages.h"
#include "content/public/renderer/render_view_observer.h"
#include "third_party/WebKit/Source/WebKit/chromium/public/WebAccessibilityNotification.h"
class RenderViewImpl;
namespace WebKit {
class WebAccessibilityObject;
class WebDocument;
};
namespace content {
// 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 RenderViewImpl.
// Accessibility is initialized based on the AccessibilityMode of
// RenderViewImpl; 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 two subclasses are:
//
// RendererAccessibilityComplete - turns on WebKit accessibility and
// provides a full accessibility implementation for when
// assistive technology is running.
//
// RendererAccessibilityFocusOnly - does not turn on WebKit
// accessibility. Only sends a minimal accessible tree to the
// browser whenever focus changes. This mode is currently used
// to support opening the on-screen keyboard in response to
// touch events on Windows 8 in Metro mode.
//
// What both subclasses have in common is that they are responsible for
//
class RendererAccessibility : public RenderViewObserver {
public:
explicit RendererAccessibility(RenderViewImpl* render_view);
virtual ~RendererAccessibility();
// Called when an accessibility notification occurs in WebKit.
virtual void HandleWebAccessibilityNotification(
const WebKit::WebAccessibilityObject& obj,
WebKit::WebAccessibilityNotification notification) = 0;
protected:
// Returns the main top-level document for this page, or NULL if there's
// no view or frame.
WebKit::WebDocument GetMainDocument();
#ifndef NDEBUG
const std::string AccessibilityNotificationToString(
AccessibilityNotification notification);
#endif
// The RenderViewImpl that owns us.
RenderViewImpl* render_view_;
// True if verbose logging of accessibility events is on.
bool logging_;
DISALLOW_COPY_AND_ASSIGN(RendererAccessibility);
};
} // namespace content
#endif // CONTENT_RENDERER_RENDERER_ACCESSIBILITY_H_
|