| 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_RENDERER_RENDER_FRAME_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 801 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 812 void OnReloadLoFiImages(); | 812 void OnReloadLoFiImages(); |
| 813 void OnTextSurroundingSelectionRequest(uint32_t max_length); | 813 void OnTextSurroundingSelectionRequest(uint32_t max_length); |
| 814 void OnSetAccessibilityMode(AccessibilityMode new_mode); | 814 void OnSetAccessibilityMode(AccessibilityMode new_mode); |
| 815 void OnSnapshotAccessibilityTree(int callback_id); | 815 void OnSnapshotAccessibilityTree(int callback_id); |
| 816 void OnUpdateOpener(int opener_routing_id); | 816 void OnUpdateOpener(int opener_routing_id); |
| 817 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); | 817 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); |
| 818 void OnSetFrameOwnerProperties( | 818 void OnSetFrameOwnerProperties( |
| 819 const FrameOwnerProperties& frame_owner_properties); | 819 const FrameOwnerProperties& frame_owner_properties); |
| 820 void OnAdvanceFocus(blink::WebFocusType type, int32_t source_routing_id); | 820 void OnAdvanceFocus(blink::WebFocusType type, int32_t source_routing_id); |
| 821 void OnSetFocusedFrame(); | 821 void OnSetFocusedFrame(); |
| 822 void OnClearFocusedFrame(); |
| 822 void OnTextTrackSettingsChanged( | 823 void OnTextTrackSettingsChanged( |
| 823 const FrameMsg_TextTrackSettings_Params& params); | 824 const FrameMsg_TextTrackSettings_Params& params); |
| 824 void OnPostMessageEvent(const FrameMsg_PostMessage_Params& params); | 825 void OnPostMessageEvent(const FrameMsg_PostMessage_Params& params); |
| 825 void OnCommitNavigation(const ResourceResponseHead& response, | 826 void OnCommitNavigation(const ResourceResponseHead& response, |
| 826 const GURL& stream_url, | 827 const GURL& stream_url, |
| 827 const CommonNavigationParams& common_params, | 828 const CommonNavigationParams& common_params, |
| 828 const RequestNavigationParams& request_params); | 829 const RequestNavigationParams& request_params); |
| 829 void OnFailedNavigation(const CommonNavigationParams& common_params, | 830 void OnFailedNavigation(const CommonNavigationParams& common_params, |
| 830 const RequestNavigationParams& request_params, | 831 const RequestNavigationParams& request_params, |
| 831 bool has_stale_copy_in_cache, | 832 bool has_stale_copy_in_cache, |
| (...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1281 mojom::FrameHostPtr frame_host_; | 1282 mojom::FrameHostPtr frame_host_; |
| 1282 | 1283 |
| 1283 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1284 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1284 | 1285 |
| 1285 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1286 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1286 }; | 1287 }; |
| 1287 | 1288 |
| 1288 } // namespace content | 1289 } // namespace content |
| 1289 | 1290 |
| 1290 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1291 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |