Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6581)

Unified Diff: chrome/browser/ui/views/accessibility/automation_manager_views.h

Issue 246433012: Extend AXTreeSourceViews to handle aura::Window and views::Widget. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Reset serializer on enable. Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/views/accessibility/automation_manager_views.h
diff --git a/chrome/browser/ui/views/accessibility/automation_manager_views.h b/chrome/browser/ui/views/accessibility/automation_manager_views.h
index d2592ae97647cd5a86de5d1adbf700048c42b850..c209426763a5c99f001933f4df4b96f06b4d25da 100644
--- a/chrome/browser/ui/views/accessibility/automation_manager_views.h
+++ b/chrome/browser/ui/views/accessibility/automation_manager_views.h
@@ -8,14 +8,15 @@
#include "base/basictypes.h"
#include "base/memory/scoped_ptr.h"
+#include "chrome/browser/ui/views/accessibility/ax_tree_source_views.h"
#include "ui/accessibility/ax_tree_serializer.h"
-#include "ui/views/accessibility/ax_tree_source_views.h"
template <typename T> struct DefaultSingletonTraits;
class Profile;
namespace views {
+class AXAuraObjWrapper;
class View;
} // namespace views
@@ -25,6 +26,12 @@ class AutomationManagerViews {
// Get the single instance of this class.
static AutomationManagerViews* GetInstance();
+ // Enable views-based automation.
+ void Enable();
+
+ // Disable views-based automation.
+ void Disable();
+
// Handle an event fired upon a |View|.
void HandleEvent(Profile* profile, views::View* view, ui::AXEvent event_type);
@@ -34,14 +41,18 @@ class AutomationManagerViews {
AutomationManagerViews();
~AutomationManagerViews();
+ // Whether Views-based automation 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 <views::AXTreeSourceViews> current_tree_;
+ scoped_ptr <AXTreeSourceViews> current_tree_;
// Serializes incremental updates on the currently active tree
// |current_tree_|.
- scoped_ptr<ui::AXTreeSerializer<views::View*> > current_tree_serializer_;
+ scoped_ptr<ui::AXTreeSerializer<views::AXAuraObjWrapper*> >
+ current_tree_serializer_;
DISALLOW_COPY_AND_ASSIGN(AutomationManagerViews);
};

Powered by Google App Engine
This is Rietveld 408576698