OLD | NEW |
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 Loading... |
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 Loading... |
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_ |
OLD | NEW |