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

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: Use ParseAXEvent 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 742 matching lines...) Expand 10 before | Expand all | Expand 10 after
753 void OnDispatchLoad(); 753 void OnDispatchLoad();
754 void OnAccessibilityEvents( 754 void OnAccessibilityEvents(
755 const std::vector<AccessibilityHostMsg_EventParams>& params, 755 const std::vector<AccessibilityHostMsg_EventParams>& params,
756 int reset_token, 756 int reset_token,
757 int ack_token); 757 int ack_token);
758 void OnAccessibilityLocationChanges( 758 void OnAccessibilityLocationChanges(
759 const std::vector<AccessibilityHostMsg_LocationChangeParams>& params); 759 const std::vector<AccessibilityHostMsg_LocationChangeParams>& params);
760 void OnAccessibilityFindInPageResult( 760 void OnAccessibilityFindInPageResult(
761 const AccessibilityHostMsg_FindInPageResultParams& params); 761 const AccessibilityHostMsg_FindInPageResultParams& params);
762 void OnAccessibilityChildFrameHitTestResult(const gfx::Point& point, 762 void OnAccessibilityChildFrameHitTestResult(const gfx::Point& point,
763 int hit_obj_id); 763 int hit_obj_id,
764 ui::AXEvent event_to_fire);
764 void OnAccessibilitySnapshotResponse( 765 void OnAccessibilitySnapshotResponse(
765 int callback_id, 766 int callback_id,
766 const AXContentTreeUpdate& snapshot); 767 const AXContentTreeUpdate& snapshot);
767 void OnSmartClipDataExtracted(uint32_t id, 768 void OnSmartClipDataExtracted(uint32_t id,
768 base::string16 text, 769 base::string16 text,
769 base::string16 html); 770 base::string16 html);
770 void OnToggleFullscreen(bool enter_fullscreen); 771 void OnToggleFullscreen(bool enter_fullscreen);
771 void OnDidStartLoading(bool to_different_document); 772 void OnDidStartLoading(bool to_different_document);
772 void OnDidStopLoading(); 773 void OnDidStopLoading();
773 void OnDidChangeLoadProgress(double load_progress); 774 void OnDidChangeLoadProgress(double load_progress);
(...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after
1171 1172
1172 // NOTE: This must be the last member. 1173 // NOTE: This must be the last member.
1173 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; 1174 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_;
1174 1175
1175 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); 1176 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl);
1176 }; 1177 };
1177 1178
1178 } // namespace content 1179 } // namespace content
1179 1180
1180 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ 1181 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_
OLDNEW
« no previous file with comments | « content/browser/accessibility/hit_testing_browsertest.cc ('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