| 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 707 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 718 void OnUpdateToUniqueOrigin(bool is_potentially_trustworthy_unique_origin); | 718 void OnUpdateToUniqueOrigin(bool is_potentially_trustworthy_unique_origin); |
| 719 void OnDidChangeSandboxFlags(int32_t frame_routing_id, | 719 void OnDidChangeSandboxFlags(int32_t frame_routing_id, |
| 720 blink::WebSandboxFlags flags); | 720 blink::WebSandboxFlags flags); |
| 721 void OnDidChangeFrameOwnerProperties(int32_t frame_routing_id, | 721 void OnDidChangeFrameOwnerProperties(int32_t frame_routing_id, |
| 722 const FrameOwnerProperties& properties); | 722 const FrameOwnerProperties& properties); |
| 723 void OnUpdateTitle(const base::string16& title, | 723 void OnUpdateTitle(const base::string16& title, |
| 724 blink::WebTextDirection title_direction); | 724 blink::WebTextDirection title_direction); |
| 725 void OnUpdateEncoding(const std::string& encoding); | 725 void OnUpdateEncoding(const std::string& encoding); |
| 726 void OnBeginNavigation(const CommonNavigationParams& common_params, | 726 void OnBeginNavigation(const CommonNavigationParams& common_params, |
| 727 const BeginNavigationParams& begin_params); | 727 const BeginNavigationParams& begin_params); |
| 728 void OnAbortNavigation(); |
| 728 void OnDispatchLoad(); | 729 void OnDispatchLoad(); |
| 729 void OnAccessibilityEvents( | 730 void OnAccessibilityEvents( |
| 730 const std::vector<AccessibilityHostMsg_EventParams>& params, | 731 const std::vector<AccessibilityHostMsg_EventParams>& params, |
| 731 int reset_token, | 732 int reset_token, |
| 732 int ack_token); | 733 int ack_token); |
| 733 void OnAccessibilityLocationChanges( | 734 void OnAccessibilityLocationChanges( |
| 734 const std::vector<AccessibilityHostMsg_LocationChangeParams>& params); | 735 const std::vector<AccessibilityHostMsg_LocationChangeParams>& params); |
| 735 void OnAccessibilityFindInPageResult( | 736 void OnAccessibilityFindInPageResult( |
| 736 const AccessibilityHostMsg_FindInPageResultParams& params); | 737 const AccessibilityHostMsg_FindInPageResultParams& params); |
| 737 void OnAccessibilityChildFrameHitTestResult(const gfx::Point& point, | 738 void OnAccessibilityChildFrameHitTestResult(const gfx::Point& point, |
| (...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1129 | 1130 |
| 1130 // NOTE: This must be the last member. | 1131 // NOTE: This must be the last member. |
| 1131 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 1132 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
| 1132 | 1133 |
| 1133 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 1134 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
| 1134 }; | 1135 }; |
| 1135 | 1136 |
| 1136 } // namespace content | 1137 } // namespace content |
| 1137 | 1138 |
| 1138 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 1139 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| OLD | NEW |