| 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 870 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 881 void OnReloadLoFiImages(); | 881 void OnReloadLoFiImages(); |
| 882 void OnTextSurroundingSelectionRequest(uint32_t max_length); | 882 void OnTextSurroundingSelectionRequest(uint32_t max_length); |
| 883 void OnSetAccessibilityMode(AccessibilityMode new_mode); | 883 void OnSetAccessibilityMode(AccessibilityMode new_mode); |
| 884 void OnSnapshotAccessibilityTree(int callback_id); | 884 void OnSnapshotAccessibilityTree(int callback_id); |
| 885 void OnExtractSmartClipData(uint32_t callback_id, const gfx::Rect& rect); | 885 void OnExtractSmartClipData(uint32_t callback_id, const gfx::Rect& rect); |
| 886 void OnUpdateOpener(int opener_routing_id); | 886 void OnUpdateOpener(int opener_routing_id); |
| 887 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); | 887 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); |
| 888 void OnSetFrameOwnerProperties( | 888 void OnSetFrameOwnerProperties( |
| 889 const FrameOwnerProperties& frame_owner_properties); | 889 const FrameOwnerProperties& frame_owner_properties); |
| 890 void OnAdvanceFocus(blink::WebFocusType type, int32_t source_routing_id); | 890 void OnAdvanceFocus(blink::WebFocusType type, int32_t source_routing_id); |
| 891 void OnAdvanceFocusInForm(bool forward); |
| 891 void OnSetFocusedFrame(); | 892 void OnSetFocusedFrame(); |
| 892 void OnTextTrackSettingsChanged( | 893 void OnTextTrackSettingsChanged( |
| 893 const FrameMsg_TextTrackSettings_Params& params); | 894 const FrameMsg_TextTrackSettings_Params& params); |
| 894 void OnPostMessageEvent(const FrameMsg_PostMessage_Params& params); | 895 void OnPostMessageEvent(const FrameMsg_PostMessage_Params& params); |
| 895 void OnCommitNavigation(const ResourceResponseHead& response, | 896 void OnCommitNavigation(const ResourceResponseHead& response, |
| 896 const GURL& stream_url, | 897 const GURL& stream_url, |
| 897 const CommonNavigationParams& common_params, | 898 const CommonNavigationParams& common_params, |
| 898 const RequestNavigationParams& request_params); | 899 const RequestNavigationParams& request_params); |
| 899 void OnFailedNavigation(const CommonNavigationParams& common_params, | 900 void OnFailedNavigation(const CommonNavigationParams& common_params, |
| 900 const RequestNavigationParams& request_params, | 901 const RequestNavigationParams& request_params, |
| (...skipping 522 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1423 std::unique_ptr<PendingNavigationInfo> pending_navigation_info_; | 1424 std::unique_ptr<PendingNavigationInfo> pending_navigation_info_; |
| 1424 | 1425 |
| 1425 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1426 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1426 | 1427 |
| 1427 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1428 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1428 }; | 1429 }; |
| 1429 | 1430 |
| 1430 } // namespace content | 1431 } // namespace content |
| 1431 | 1432 |
| 1432 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1433 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |