| 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 class RenderWidget; | 150 class RenderWidget; |
| 151 class RenderWidgetFullscreenPepper; | 151 class RenderWidgetFullscreenPepper; |
| 152 class ResourceRequestBodyImpl; | 152 class ResourceRequestBodyImpl; |
| 153 class ScreenOrientationDispatcher; | 153 class ScreenOrientationDispatcher; |
| 154 class UserMediaClientImpl; | 154 class UserMediaClientImpl; |
| 155 class WakeLockDispatcher; | 155 class WakeLockDispatcher; |
| 156 struct CommonNavigationParams; | 156 struct CommonNavigationParams; |
| 157 struct CustomContextMenuContext; | 157 struct CustomContextMenuContext; |
| 158 struct FileChooserFileInfo; | 158 struct FileChooserFileInfo; |
| 159 struct FileChooserParams; | 159 struct FileChooserParams; |
| 160 struct FrameOwnerProperties; |
| 160 struct FrameReplicationState; | 161 struct FrameReplicationState; |
| 161 struct NavigationParams; | 162 struct NavigationParams; |
| 162 struct RequestNavigationParams; | 163 struct RequestNavigationParams; |
| 163 struct ResourceResponseHead; | 164 struct ResourceResponseHead; |
| 164 struct StartNavigationParams; | 165 struct StartNavigationParams; |
| 165 struct StreamOverrideParameters; | 166 struct StreamOverrideParameters; |
| 166 | 167 |
| 167 class CONTENT_EXPORT RenderFrameImpl | 168 class CONTENT_EXPORT RenderFrameImpl |
| 168 : public RenderFrame, | 169 : public RenderFrame, |
| 169 NON_EXPORTED_BASE(mojom::Frame), | 170 NON_EXPORTED_BASE(mojom::Frame), |
| (...skipping 640 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 810 void OnExecuteNoValueEditCommand(const std::string& name); | 811 void OnExecuteNoValueEditCommand(const std::string& name); |
| 811 void OnExtendSelectionAndDelete(int before, int after); | 812 void OnExtendSelectionAndDelete(int before, int after); |
| 812 void OnReload(bool bypass_cache); | 813 void OnReload(bool bypass_cache); |
| 813 void OnReloadLoFiImages(); | 814 void OnReloadLoFiImages(); |
| 814 void OnTextSurroundingSelectionRequest(uint32_t max_length); | 815 void OnTextSurroundingSelectionRequest(uint32_t max_length); |
| 815 void OnSetAccessibilityMode(AccessibilityMode new_mode); | 816 void OnSetAccessibilityMode(AccessibilityMode new_mode); |
| 816 void OnSnapshotAccessibilityTree(int callback_id); | 817 void OnSnapshotAccessibilityTree(int callback_id); |
| 817 void OnUpdateOpener(int opener_routing_id); | 818 void OnUpdateOpener(int opener_routing_id); |
| 818 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); | 819 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); |
| 819 void OnSetFrameOwnerProperties( | 820 void OnSetFrameOwnerProperties( |
| 820 const blink::WebFrameOwnerProperties& frame_owner_properties); | 821 const FrameOwnerProperties& frame_owner_properties); |
| 821 void OnAdvanceFocus(blink::WebFocusType type, int32_t source_routing_id); | 822 void OnAdvanceFocus(blink::WebFocusType type, int32_t source_routing_id); |
| 822 void OnSetFocusedFrame(); | 823 void OnSetFocusedFrame(); |
| 823 void OnTextTrackSettingsChanged( | 824 void OnTextTrackSettingsChanged( |
| 824 const FrameMsg_TextTrackSettings_Params& params); | 825 const FrameMsg_TextTrackSettings_Params& params); |
| 825 void OnPostMessageEvent(const FrameMsg_PostMessage_Params& params); | 826 void OnPostMessageEvent(const FrameMsg_PostMessage_Params& params); |
| 826 void OnCommitNavigation(const ResourceResponseHead& response, | 827 void OnCommitNavigation(const ResourceResponseHead& response, |
| 827 const GURL& stream_url, | 828 const GURL& stream_url, |
| 828 const CommonNavigationParams& common_params, | 829 const CommonNavigationParams& common_params, |
| 829 const RequestNavigationParams& request_params); | 830 const RequestNavigationParams& request_params); |
| 830 void OnFailedNavigation(const CommonNavigationParams& common_params, | 831 void OnFailedNavigation(const CommonNavigationParams& common_params, |
| (...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1298 mojom::FrameHostPtr frame_host_; | 1299 mojom::FrameHostPtr frame_host_; |
| 1299 | 1300 |
| 1300 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1301 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1301 | 1302 |
| 1302 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1303 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1303 }; | 1304 }; |
| 1304 | 1305 |
| 1305 } // namespace content | 1306 } // namespace content |
| 1306 | 1307 |
| 1307 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1308 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |