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 44eac3254b6f9ccb87032d65952f10c625dbed4c..828d6ec143938f29f399f192b23c1056096ec342 100644 |
| --- a/content/browser/frame_host/render_frame_host_impl.h |
| +++ b/content/browser/frame_host/render_frame_host_impl.h |
| @@ -451,7 +451,9 @@ class CONTENT_EXPORT RenderFrameHostImpl : public RenderFrameHost, |
| // renderer process, and the accessibility tree it sent can be |
| // retrieved using GetAXTreeForTesting(). |
| void SetAccessibilityCallbackForTesting( |
| - const base::Callback<void(ui::AXEvent, int)>& callback); |
| + const base::Callback<void(RenderFrameHostImpl*, |
| + ui::AXEvent, |
| + int)>& callback); |
| // Called when the metadata about the accessibility tree for this frame |
| // changes due to a browser-side change, as opposed to due to an IPC from |
| @@ -642,6 +644,8 @@ class CONTENT_EXPORT RenderFrameHostImpl : public RenderFrameHost, |
| const std::vector<AccessibilityHostMsg_LocationChangeParams>& params); |
| void OnAccessibilityFindInPageResult( |
| const AccessibilityHostMsg_FindInPageResultParams& params); |
| + void OnAccessibilityChildFrameHitTestResult( |
| + const gfx::Point& point, int hit_obj_id); |
|
nasko
2016/03/30 21:01:41
style: params on new line.
dmazzoni
2016/03/31 16:15:54
Done.
|
| void OnAccessibilitySnapshotResponse( |
| int callback_id, |
| const AXContentTreeUpdate& snapshot); |
| @@ -889,7 +893,9 @@ class CONTENT_EXPORT RenderFrameHostImpl : public RenderFrameHost, |
| std::map<int, AXTreeSnapshotCallback> ax_tree_snapshot_callbacks_; |
| // Callback when an event is received, for testing. |
| - base::Callback<void(ui::AXEvent, int)> accessibility_testing_callback_; |
| + base::Callback<void(RenderFrameHostImpl*, |
| + ui::AXEvent, |
| + int)> accessibility_testing_callback_; |
| // The most recently received accessibility tree - for testing only. |
| scoped_ptr<ui::AXTree> ax_tree_for_testing_; |
| // Flag to not create a BrowserAccessibilityManager, for testing. If one |