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 713 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
724 void OnUpdateToUniqueOrigin(bool is_potentially_trustworthy_unique_origin); | 724 void OnUpdateToUniqueOrigin(bool is_potentially_trustworthy_unique_origin); |
725 void OnDidChangeSandboxFlags(int32_t frame_routing_id, | 725 void OnDidChangeSandboxFlags(int32_t frame_routing_id, |
726 blink::WebSandboxFlags flags); | 726 blink::WebSandboxFlags flags); |
727 void OnDidChangeFrameOwnerProperties(int32_t frame_routing_id, | 727 void OnDidChangeFrameOwnerProperties(int32_t frame_routing_id, |
728 const FrameOwnerProperties& properties); | 728 const FrameOwnerProperties& properties); |
729 void OnUpdateTitle(const base::string16& title, | 729 void OnUpdateTitle(const base::string16& title, |
730 blink::WebTextDirection title_direction); | 730 blink::WebTextDirection title_direction); |
731 void OnUpdateEncoding(const std::string& encoding); | 731 void OnUpdateEncoding(const std::string& encoding); |
732 void OnBeginNavigation(const CommonNavigationParams& common_params, | 732 void OnBeginNavigation(const CommonNavigationParams& common_params, |
733 const BeginNavigationParams& begin_params); | 733 const BeginNavigationParams& begin_params); |
| 734 void OnAbortNavigation(); |
734 void OnDispatchLoad(); | 735 void OnDispatchLoad(); |
735 void OnAccessibilityEvents( | 736 void OnAccessibilityEvents( |
736 const std::vector<AccessibilityHostMsg_EventParams>& params, | 737 const std::vector<AccessibilityHostMsg_EventParams>& params, |
737 int reset_token, | 738 int reset_token, |
738 int ack_token); | 739 int ack_token); |
739 void OnAccessibilityLocationChanges( | 740 void OnAccessibilityLocationChanges( |
740 const std::vector<AccessibilityHostMsg_LocationChangeParams>& params); | 741 const std::vector<AccessibilityHostMsg_LocationChangeParams>& params); |
741 void OnAccessibilityFindInPageResult( | 742 void OnAccessibilityFindInPageResult( |
742 const AccessibilityHostMsg_FindInPageResultParams& params); | 743 const AccessibilityHostMsg_FindInPageResultParams& params); |
743 void OnAccessibilityChildFrameHitTestResult(const gfx::Point& point, | 744 void OnAccessibilityChildFrameHitTestResult(const gfx::Point& point, |
(...skipping 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1138 | 1139 |
1139 // NOTE: This must be the last member. | 1140 // NOTE: This must be the last member. |
1140 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 1141 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
1141 | 1142 |
1142 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 1143 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
1143 }; | 1144 }; |
1144 | 1145 |
1145 } // namespace content | 1146 } // namespace content |
1146 | 1147 |
1147 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 1148 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
OLD | NEW |