blob: 6d1fcf9f1b279296e12eb4f91ac4a2d404424fe9 (
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
86
87
88
|
// Copyright 2014 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 CHROME_BROWSER_UI_AURA_ACCESSIBILITY_AUTOMATION_MANAGER_AURA_H_
#define CHROME_BROWSER_UI_AURA_ACCESSIBILITY_AUTOMATION_MANAGER_AURA_H_
#include "base/basictypes.h"
#include "base/memory/scoped_ptr.h"
#include "chrome/browser/extensions/api/automation_internal/automation_action_adapter.h"
#include "chrome/browser/ui/aura/accessibility/ax_tree_source_aura.h"
#include "ui/accessibility/ax_tree_serializer.h"
template <typename T>
struct DefaultSingletonTraits;
namespace content {
class BrowserContext;
} // namespace content
namespace views {
class AXAuraObjWrapper;
class View;
} // namespace views
// Manages a tree of automation nodes.
class AutomationManagerAura : public extensions::AutomationActionAdapter {
public:
// Get the single instance of this class.
static AutomationManagerAura* GetInstance();
// Enable automation support for views.
void Enable(content::BrowserContext* context);
// Disable automation support for views.
void Disable();
// Handle an event fired upon a |View|.
void HandleEvent(content::BrowserContext* context,
views::View* view,
ui::AXEvent event_type);
void HandleAlert(content::BrowserContext* context, const std::string& text);
// AutomationActionAdapter implementation.
void DoDefault(int32 id) override;
void Focus(int32 id) override;
void MakeVisible(int32 id) override;
void SetSelection(int32 id, int32 start, int32 end) override;
void ShowContextMenu(int32 id) override;
protected:
virtual ~AutomationManagerAura();
private:
friend struct DefaultSingletonTraits<AutomationManagerAura>;
AutomationManagerAura();
// Reset all state in this manager.
void ResetSerializer();
void SendEvent(content::BrowserContext* context,
views::AXAuraObjWrapper* aura_obj,
ui::AXEvent event_type);
// Whether automation support for views is enabled.
bool enabled_;
// Holds the active views-based accessibility tree. A tree currently consists
// of all views descendant to a |Widget| (see |AXTreeSourceViews|).
// A tree becomes active when an event is fired on a descendant view.
scoped_ptr<AXTreeSourceAura> current_tree_;
// Serializes incremental updates on the currently active tree
// |current_tree_|.
scoped_ptr<ui::AXTreeSerializer<views::AXAuraObjWrapper*>>
current_tree_serializer_;
std::string pending_alert_text_;
bool processing_events_;
std::vector<std::pair<views::AXAuraObjWrapper*, ui::AXEvent>> pending_events_;
DISALLOW_COPY_AND_ASSIGN(AutomationManagerAura);
};
#endif // CHROME_BROWSER_UI_AURA_ACCESSIBILITY_AUTOMATION_MANAGER_AURA_H_
|