diff options
author | dmazzoni <dmazzoni@chromium.org> | 2015-02-02 22:56:18 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-02-03 06:57:13 +0000 |
commit | 57831c0d68b35843942e19e30d0c9c86d2005099 (patch) | |
tree | 2f5f91710258cd95a17e5f1adf75385a0a7b492b /content/browser/accessibility/browser_accessibility.h | |
parent | 5eef262146d69b3773e69fa6f886cf869b7adb24 (diff) | |
download | chromium_src-57831c0d68b35843942e19e30d0c9c86d2005099.zip chromium_src-57831c0d68b35843942e19e30d0c9c86d2005099.tar.gz chromium_src-57831c0d68b35843942e19e30d0c9c86d2005099.tar.bz2 |
Fire AX text inserted event when embedded obj char changes.
See bug for details. This patch makes it so that we fire
the events IA2_EVENT_TEXT_INSERTED and IA2_EVENT_TEXT_REMOVED
when the children referenced by the embedded object characters
changed, not just when the text changed.
This patch also avoids incorrectly firing these same two
events on a newly-created node.
BUG=425861
Review URL: https://codereview.chromium.org/859133003
Cr-Commit-Position: refs/heads/master@{#314280}
Diffstat (limited to 'content/browser/accessibility/browser_accessibility.h')
-rw-r--r-- | content/browser/accessibility/browser_accessibility.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/content/browser/accessibility/browser_accessibility.h b/content/browser/accessibility/browser_accessibility.h index e8a7d38..47f19b7 100644 --- a/content/browser/accessibility/browser_accessibility.h +++ b/content/browser/accessibility/browser_accessibility.h @@ -58,14 +58,8 @@ class CONTENT_EXPORT BrowserAccessibility { // its data changes. virtual void OnDataChanged() {} - // Called after an atomic update to the tree finished and this object - // was created or changed in this update. - virtual void OnUpdateFinished() {} - virtual void OnSubtreeWillBeDeleted() {} - virtual void OnSubtreeCreationFinished() {} - // Called when the location changed. virtual void OnLocationChanged() {} |