Chromium Code Reviews| Index: content/browser/frame_host/render_frame_host_impl.h |
| diff --git a/content/browser/frame_host/render_frame_host_impl.h b/content/browser/frame_host/render_frame_host_impl.h |
| index 3a2138f2fc9120b8cffcf93330b5c848fdf4db04..26b5d54765bdcc873bcbf08ec54b7cfa8dfd820b 100644 |
| --- a/content/browser/frame_host/render_frame_host_impl.h |
| +++ b/content/browser/frame_host/render_frame_host_impl.h |
| @@ -455,6 +455,9 @@ class CONTENT_EXPORT RenderFrameHostImpl : public RenderFrameHost, |
| // a renderer. |
| void UpdateAXTreeData(); |
| + // Set the AX tree ID of the embedder RFHI, if this is a browser plugin guest. |
| + void SetBrowserPluginEmbedderAXTreeID(AXTreeIDRegistry::AXTreeID ax_tree_id); |
|
nasko
2016/03/29 21:35:44
nit: This is a simple setter method that is not pa
dmazzoni
2016/03/29 21:42:19
Done.
|
| + |
| // Send a message to the render process to change text track style settings. |
| void SetTextTrackSettings(const FrameMsg_TextTrackSettings_Params& params); |
| @@ -881,6 +884,9 @@ class CONTENT_EXPORT RenderFrameHostImpl : public RenderFrameHost, |
| // The last AXContentTreeData for this frame received from the RenderFrame. |
| AXContentTreeData ax_content_tree_data_; |
| + // The AX tree ID of the embedder, if this is a browser plugin guest. |
| + AXTreeIDRegistry::AXTreeID browser_plugin_embedder_ax_tree_id_; |
| + |
| // The mapping from callback id to corresponding callback for pending |
| // accessibility tree snapshot calls created by RequestAXTreeSnapshot. |
| std::map<int, AXTreeSnapshotCallback> ax_tree_snapshot_callbacks_; |