| Index: chrome/renderer/extensions/automation_internal_custom_bindings.h
|
| diff --git a/chrome/renderer/extensions/automation_internal_custom_bindings.h b/chrome/renderer/extensions/automation_internal_custom_bindings.h
|
| index c4f2cd23850cfc59bbc3e764b434aa2a19d99c14..d861b006592fbea92b2b11d8ac16972d35a774e8 100644
|
| --- a/chrome/renderer/extensions/automation_internal_custom_bindings.h
|
| +++ b/chrome/renderer/extensions/automation_internal_custom_bindings.h
|
| @@ -149,7 +149,8 @@ class AutomationInternalCustomBindings : public ObjectBackedNativeHandler,
|
|
|
| // Handle accessibility events from the browser process.
|
| void OnAccessibilityEvent(
|
| - const ExtensionMsg_AccessibilityEventParams& params);
|
| + const ExtensionMsg_AccessibilityEventParams& params,
|
| + bool is_active_profile);
|
|
|
| // AXTreeDelegate implementation.
|
| void OnNodeWillBeDeleted(ui::AXTree* tree, ui::AXNode* node) override;
|
| @@ -167,6 +168,7 @@ class AutomationInternalCustomBindings : public ObjectBackedNativeHandler,
|
| base::hash_map<int, TreeCache*> tree_id_to_tree_cache_map_;
|
| base::hash_map<ui::AXTree*, TreeCache*> axtree_to_tree_cache_map_;
|
| scoped_refptr<AutomationMessageFilter> message_filter_;
|
| + bool is_active_profile_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(AutomationInternalCustomBindings);
|
| };
|
|
|