diff options
author | dmazzoni <dmazzoni@chromium.org> | 2014-08-27 13:54:11 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-08-27 20:56:55 +0000 |
commit | 487bac0415731a3f0ca031f2ee181a1c2a3c0043 (patch) | |
tree | 7b1dc51396f767a4cb68cdec782e63018a1f9880 /content/browser/accessibility/browser_accessibility.h | |
parent | 617e4fc4f9be2bb575d1a5161272f13abe625788 (diff) | |
download | chromium_src-487bac0415731a3f0ca031f2ee181a1c2a3c0043.zip chromium_src-487bac0415731a3f0ca031f2ee181a1c2a3c0043.tar.gz chromium_src-487bac0415731a3f0ca031f2ee181a1c2a3c0043.tar.bz2 |
Send Android accessibility event when object location changes.
Note that the LOCATION_CHANGED event isn't explicitly handled, it just gets mapped to a WINDOW_CONTENT_CHANGED event on Android.
BUG=407871
Review URL: https://codereview.chromium.org/510513003
Cr-Commit-Position: refs/heads/master@{#292216}
Diffstat (limited to 'content/browser/accessibility/browser_accessibility.h')
-rw-r--r-- | content/browser/accessibility/browser_accessibility.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/browser/accessibility/browser_accessibility.h b/content/browser/accessibility/browser_accessibility.h index 17f70ca..eeb940e 100644 --- a/content/browser/accessibility/browser_accessibility.h +++ b/content/browser/accessibility/browser_accessibility.h @@ -65,7 +65,7 @@ class CONTENT_EXPORT BrowserAccessibility { virtual bool IsNative() const; // Called when the location changed. - virtual void OnLocationChanged() const {} + virtual void OnLocationChanged() {} // Return true if this object is equal to or a descendant of |ancestor|. bool IsDescendantOf(BrowserAccessibility* ancestor); |