| 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 731 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 742 void OnUpdateToUniqueOrigin(bool is_potentially_trustworthy_unique_origin); | 742 void OnUpdateToUniqueOrigin(bool is_potentially_trustworthy_unique_origin); |
| 743 void OnDidChangeSandboxFlags(int32_t frame_routing_id, | 743 void OnDidChangeSandboxFlags(int32_t frame_routing_id, |
| 744 blink::WebSandboxFlags flags); | 744 blink::WebSandboxFlags flags); |
| 745 void OnDidChangeFrameOwnerProperties(int32_t frame_routing_id, | 745 void OnDidChangeFrameOwnerProperties(int32_t frame_routing_id, |
| 746 const FrameOwnerProperties& properties); | 746 const FrameOwnerProperties& properties); |
| 747 void OnUpdateTitle(const base::string16& title, | 747 void OnUpdateTitle(const base::string16& title, |
| 748 blink::WebTextDirection title_direction); | 748 blink::WebTextDirection title_direction); |
| 749 void OnUpdateEncoding(const std::string& encoding); | 749 void OnUpdateEncoding(const std::string& encoding); |
| 750 void OnBeginNavigation(const CommonNavigationParams& common_params, | 750 void OnBeginNavigation(const CommonNavigationParams& common_params, |
| 751 const BeginNavigationParams& begin_params); | 751 const BeginNavigationParams& begin_params); |
| 752 void OnAbortNavigation(); |
| 752 void OnDispatchLoad(); | 753 void OnDispatchLoad(); |
| 753 void OnAccessibilityEvents( | 754 void OnAccessibilityEvents( |
| 754 const std::vector<AccessibilityHostMsg_EventParams>& params, | 755 const std::vector<AccessibilityHostMsg_EventParams>& params, |
| 755 int reset_token, | 756 int reset_token, |
| 756 int ack_token); | 757 int ack_token); |
| 757 void OnAccessibilityLocationChanges( | 758 void OnAccessibilityLocationChanges( |
| 758 const std::vector<AccessibilityHostMsg_LocationChangeParams>& params); | 759 const std::vector<AccessibilityHostMsg_LocationChangeParams>& params); |
| 759 void OnAccessibilityFindInPageResult( | 760 void OnAccessibilityFindInPageResult( |
| 760 const AccessibilityHostMsg_FindInPageResultParams& params); | 761 const AccessibilityHostMsg_FindInPageResultParams& params); |
| 761 void OnAccessibilityChildFrameHitTestResult(const gfx::Point& point, | 762 void OnAccessibilityChildFrameHitTestResult(const gfx::Point& point, |
| (...skipping 408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1170 | 1171 |
| 1171 // NOTE: This must be the last member. | 1172 // NOTE: This must be the last member. |
| 1172 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 1173 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
| 1173 | 1174 |
| 1174 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 1175 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
| 1175 }; | 1176 }; |
| 1176 | 1177 |
| 1177 } // namespace content | 1178 } // namespace content |
| 1178 | 1179 |
| 1179 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 1180 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| OLD | NEW |