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

Unified Diff: chrome/renderer/extensions/automation_internal_custom_bindings.cc

Issue 2640123004: Initial support for native accessibility in ARC (Closed)
Patch Set: Experimental changes 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
Index: chrome/renderer/extensions/automation_internal_custom_bindings.cc
diff --git a/chrome/renderer/extensions/automation_internal_custom_bindings.cc b/chrome/renderer/extensions/automation_internal_custom_bindings.cc
index 1cc6e97f6b25c7f74e466e7cf67c163c358d9cc8..9a7cc54e522771fb8e7e26d539dd01be3554af73 100644
--- a/chrome/renderer/extensions/automation_internal_custom_bindings.cc
+++ b/chrome/renderer/extensions/automation_internal_custom_bindings.cc
@@ -831,6 +831,7 @@ void AutomationInternalCustomBindings::DestroyAccessibilityTree(
}
int tree_id = args[0]->Int32Value();
+ LOG(ERROR) << "tree destroyed!" << tree_id;
auto iter = tree_id_to_tree_cache_map_.find(tree_id);
if (iter == tree_id_to_tree_cache_map_.end())
return;
@@ -1137,6 +1138,8 @@ void AutomationInternalCustomBindings::GetChildIDAtIndex(
void AutomationInternalCustomBindings::OnAccessibilityEvent(
const ExtensionMsg_AccessibilityEventParams& params,
bool is_active_profile) {
+ LOG(ERROR) << "Event!" << params.event_type << " "
+ << params.update.ToString();
is_active_profile_ = is_active_profile;
int tree_id = params.tree_id;
TreeCache* cache;

Powered by Google App Engine
This is Rietveld 408576698