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

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: 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 723 matching lines...) Expand 10 before | Expand all | Expand 10 after
734 void OnDispatchLoad(); 734 void OnDispatchLoad();
735 void OnAccessibilityEvents( 735 void OnAccessibilityEvents(
736 const std::vector<AccessibilityHostMsg_EventParams>& params, 736 const std::vector<AccessibilityHostMsg_EventParams>& params,
737 int reset_token, 737 int reset_token,
738 int ack_token); 738 int ack_token);
739 void OnAccessibilityLocationChanges( 739 void OnAccessibilityLocationChanges(
740 const std::vector<AccessibilityHostMsg_LocationChangeParams>& params); 740 const std::vector<AccessibilityHostMsg_LocationChangeParams>& params);
741 void OnAccessibilityFindInPageResult( 741 void OnAccessibilityFindInPageResult(
742 const AccessibilityHostMsg_FindInPageResultParams& params); 742 const AccessibilityHostMsg_FindInPageResultParams& params);
743 void OnAccessibilityChildFrameHitTestResult(const gfx::Point& point, 743 void OnAccessibilityChildFrameHitTestResult(const gfx::Point& point,
744 int hit_obj_id); 744 int hit_obj_id,
745 ui::AXEvent event_to_fire);
745 void OnAccessibilitySnapshotResponse( 746 void OnAccessibilitySnapshotResponse(
746 int callback_id, 747 int callback_id,
747 const AXContentTreeUpdate& snapshot); 748 const AXContentTreeUpdate& snapshot);
748 void OnSmartClipDataExtracted(uint32_t id, 749 void OnSmartClipDataExtracted(uint32_t id,
749 base::string16 text, 750 base::string16 text,
750 base::string16 html); 751 base::string16 html);
751 void OnToggleFullscreen(bool enter_fullscreen); 752 void OnToggleFullscreen(bool enter_fullscreen);
752 void OnDidStartLoading(bool to_different_document); 753 void OnDidStartLoading(bool to_different_document);
753 void OnDidStopLoading(); 754 void OnDidStopLoading();
754 void OnDidChangeLoadProgress(double load_progress); 755 void OnDidChangeLoadProgress(double load_progress);
(...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after
1135 1136
1136 // NOTE: This must be the last member. 1137 // NOTE: This must be the last member.
1137 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; 1138 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_;
1138 1139
1139 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); 1140 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl);
1140 }; 1141 };
1141 1142
1142 } // namespace content 1143 } // namespace content
1143 1144
1144 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ 1145 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698