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

Side by Side Diff: content/browser/frame_host/render_frame_host_impl.h

Issue 2748463003: Generalize the HIT_TEST accessibility action so that it can send any event. (Closed)
Patch Set: Add automation API binding and test Created 3 years, 9 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ 5 #ifndef CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_
6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ 6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 724 matching lines...) Expand 10 before | Expand all | Expand 10 after
735 void OnDispatchLoad(); 735 void OnDispatchLoad();
736 void OnAccessibilityEvents( 736 void OnAccessibilityEvents(
737 const std::vector<AccessibilityHostMsg_EventParams>& params, 737 const std::vector<AccessibilityHostMsg_EventParams>& params,
738 int reset_token, 738 int reset_token,
739 int ack_token); 739 int ack_token);
740 void OnAccessibilityLocationChanges( 740 void OnAccessibilityLocationChanges(
741 const std::vector<AccessibilityHostMsg_LocationChangeParams>& params); 741 const std::vector<AccessibilityHostMsg_LocationChangeParams>& params);
742 void OnAccessibilityFindInPageResult( 742 void OnAccessibilityFindInPageResult(
743 const AccessibilityHostMsg_FindInPageResultParams& params); 743 const AccessibilityHostMsg_FindInPageResultParams& params);
744 void OnAccessibilityChildFrameHitTestResult(const gfx::Point& point, 744 void OnAccessibilityChildFrameHitTestResult(const gfx::Point& point,
745 int hit_obj_id); 745 int hit_obj_id,
746 ui::AXEvent event_to_fire);
746 void OnAccessibilitySnapshotResponse( 747 void OnAccessibilitySnapshotResponse(
747 int callback_id, 748 int callback_id,
748 const AXContentTreeUpdate& snapshot); 749 const AXContentTreeUpdate& snapshot);
749 void OnSmartClipDataExtracted(uint32_t id, 750 void OnSmartClipDataExtracted(uint32_t id,
750 base::string16 text, 751 base::string16 text,
751 base::string16 html); 752 base::string16 html);
752 void OnToggleFullscreen(bool enter_fullscreen); 753 void OnToggleFullscreen(bool enter_fullscreen);
753 void OnDidStartLoading(bool to_different_document); 754 void OnDidStartLoading(bool to_different_document);
754 void OnDidStopLoading(); 755 void OnDidStopLoading();
755 void OnDidChangeLoadProgress(double load_progress); 756 void OnDidChangeLoadProgress(double load_progress);
(...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after
1139 1140
1140 // NOTE: This must be the last member. 1141 // NOTE: This must be the last member.
1141 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; 1142 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_;
1142 1143
1143 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); 1144 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl);
1144 }; 1145 };
1145 1146
1146 } // namespace content 1147 } // namespace content
1147 1148
1148 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ 1149 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698