| 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 725 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 736 void OnUpdateToUniqueOrigin(bool is_potentially_trustworthy_unique_origin); | 736 void OnUpdateToUniqueOrigin(bool is_potentially_trustworthy_unique_origin); |
| 737 void OnDidChangeSandboxFlags(int32_t frame_routing_id, | 737 void OnDidChangeSandboxFlags(int32_t frame_routing_id, |
| 738 blink::WebSandboxFlags flags); | 738 blink::WebSandboxFlags flags); |
| 739 void OnDidChangeFrameOwnerProperties(int32_t frame_routing_id, | 739 void OnDidChangeFrameOwnerProperties(int32_t frame_routing_id, |
| 740 const FrameOwnerProperties& properties); | 740 const FrameOwnerProperties& properties); |
| 741 void OnUpdateTitle(const base::string16& title, | 741 void OnUpdateTitle(const base::string16& title, |
| 742 blink::WebTextDirection title_direction); | 742 blink::WebTextDirection title_direction); |
| 743 void OnUpdateEncoding(const std::string& encoding); | 743 void OnUpdateEncoding(const std::string& encoding); |
| 744 void OnBeginNavigation(const CommonNavigationParams& common_params, | 744 void OnBeginNavigation(const CommonNavigationParams& common_params, |
| 745 const BeginNavigationParams& begin_params); | 745 const BeginNavigationParams& begin_params); |
| 746 void OnAbortNavigation(); |
| 746 void OnDispatchLoad(); | 747 void OnDispatchLoad(); |
| 747 void OnAccessibilityEvents( | 748 void OnAccessibilityEvents( |
| 748 const std::vector<AccessibilityHostMsg_EventParams>& params, | 749 const std::vector<AccessibilityHostMsg_EventParams>& params, |
| 749 int reset_token, | 750 int reset_token, |
| 750 int ack_token); | 751 int ack_token); |
| 751 void OnAccessibilityLocationChanges( | 752 void OnAccessibilityLocationChanges( |
| 752 const std::vector<AccessibilityHostMsg_LocationChangeParams>& params); | 753 const std::vector<AccessibilityHostMsg_LocationChangeParams>& params); |
| 753 void OnAccessibilityFindInPageResult( | 754 void OnAccessibilityFindInPageResult( |
| 754 const AccessibilityHostMsg_FindInPageResultParams& params); | 755 const AccessibilityHostMsg_FindInPageResultParams& params); |
| 755 void OnAccessibilityChildFrameHitTestResult(const gfx::Point& point, | 756 void OnAccessibilityChildFrameHitTestResult(const gfx::Point& point, |
| (...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1162 | 1163 |
| 1163 // NOTE: This must be the last member. | 1164 // NOTE: This must be the last member. |
| 1164 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 1165 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
| 1165 | 1166 |
| 1166 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 1167 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
| 1167 }; | 1168 }; |
| 1168 | 1169 |
| 1169 } // namespace content | 1170 } // namespace content |
| 1170 | 1171 |
| 1171 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 1172 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| OLD | NEW |