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

Unified Diff: chrome/browser/ui/aura/accessibility/automation_manager_aura.cc

Issue 2700103004: Initial support for accessibility actions on ARC. (Closed)
Patch Set: Address feedback. Created 3 years, 10 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
« no previous file with comments | « chrome/browser/ui/aura/accessibility/automation_manager_aura.h ('k') | ui/accessibility/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/aura/accessibility/automation_manager_aura.cc
diff --git a/chrome/browser/ui/aura/accessibility/automation_manager_aura.cc b/chrome/browser/ui/aura/accessibility/automation_manager_aura.cc
index 06bfc0f172ca4a6c131908e5f44ce4aa609f4ea8..e266a8a7f6e2677fde193f60a046a3ed8cdb19f0 100644
--- a/chrome/browser/ui/aura/accessibility/automation_manager_aura.cc
+++ b/chrome/browser/ui/aura/accessibility/automation_manager_aura.cc
@@ -18,6 +18,7 @@
#include "content/public/browser/browser_context.h"
#include "ui/accessibility/ax_action_data.h"
#include "ui/accessibility/ax_enums.h"
+#include "ui/accessibility/ax_tree_id_registry.h"
#include "ui/aura/env.h"
#include "ui/aura/window.h"
#include "ui/views/accessibility/ax_aura_obj_wrapper.h"
@@ -146,7 +147,7 @@ void AutomationManagerAura::OnChildWindowRemoved(
}
AutomationManagerAura::AutomationManagerAura()
- : enabled_(false), processing_events_(false) {}
+ : AXHostDelegate(0), enabled_(false), processing_events_(false) {}
dmazzoni 2017/02/22 07:44:28 We really ought to have a constant somewhere in th
yawano 2017/02/22 08:39:05 api::automation::kDesktopTreeId? - https://cs.chro
David Tseng 2017/02/23 18:44:25 Done.
David Tseng 2017/02/23 18:44:25 Yeah, there's a constant (already being used) just
AutomationManagerAura::~AutomationManagerAura() {
}
« no previous file with comments | « chrome/browser/ui/aura/accessibility/automation_manager_aura.h ('k') | ui/accessibility/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698