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

Unified Diff: content/browser/frame_host/render_frame_host_delegate.h

Issue 2255093005: Pass accessible location change messages to the automation API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Speculative fix to cast_shell Created 4 years, 4 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 | « chromecast/renderer/media/BUILD.gn ('k') | content/browser/frame_host/render_frame_host_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/frame_host/render_frame_host_delegate.h
diff --git a/content/browser/frame_host/render_frame_host_delegate.h b/content/browser/frame_host/render_frame_host_delegate.h
index 0d0d9dd4988fd7b260b1a12c5d193a0693969177..9c77b5fa3e74625d9cb20bdfa3f8e2ebcda60892 100644
--- a/content/browser/frame_host/render_frame_host_delegate.h
+++ b/content/browser/frame_host/render_frame_host_delegate.h
@@ -41,6 +41,7 @@ class RenderFrameHost;
class WakeLockServiceContext;
class WebContents;
struct AXEventNotificationDetails;
+struct AXLocationChangeNotificationDetails;
struct ContextMenuParams;
struct FileChooserParams;
struct TransitionLayerData;
@@ -142,9 +143,12 @@ class CONTENT_EXPORT RenderFrameHostDelegate {
// Get the accessibility mode for the WebContents that owns this frame.
virtual AccessibilityMode GetAccessibilityMode() const;
- // Invoked when an accessibility event is received from the renderer.
+ // Forward accessibility messages to other potential listeners like
+ // the automation extension API.
virtual void AccessibilityEventReceived(
const std::vector<AXEventNotificationDetails>& details) {}
+ virtual void AccessibilityLocationChangesReceived(
+ const std::vector<AXLocationChangeNotificationDetails>& details) {}
// Find a guest RenderFrameHost by its parent |render_frame_host| and
// |browser_plugin_instance_id|.
« no previous file with comments | « chromecast/renderer/media/BUILD.gn ('k') | content/browser/frame_host/render_frame_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698