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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 #include "content/renderer/mojo/blink_interface_provider_impl.h" | 45 #include "content/renderer/mojo/blink_interface_provider_impl.h" |
46 #include "content/renderer/renderer_webcookiejar_impl.h" | 46 #include "content/renderer/renderer_webcookiejar_impl.h" |
47 #include "content/renderer/unique_name_helper.h" | 47 #include "content/renderer/unique_name_helper.h" |
48 #include "ipc/ipc_message.h" | 48 #include "ipc/ipc_message.h" |
49 #include "ipc/ipc_platform_file.h" | 49 #include "ipc/ipc_platform_file.h" |
50 #include "media/blink/webmediaplayer_delegate.h" | 50 #include "media/blink/webmediaplayer_delegate.h" |
51 #include "media/blink/webmediaplayer_params.h" | 51 #include "media/blink/webmediaplayer_params.h" |
52 #include "media/mojo/interfaces/remoting.mojom.h" | 52 #include "media/mojo/interfaces/remoting.mojom.h" |
53 #include "mojo/public/cpp/bindings/associated_binding.h" | 53 #include "mojo/public/cpp/bindings/associated_binding.h" |
54 #include "mojo/public/cpp/bindings/binding.h" | 54 #include "mojo/public/cpp/bindings/binding.h" |
| 55 #include "mojo/public/cpp/system/data_pipe.h" |
55 #include "ppapi/features/features.h" | 56 #include "ppapi/features/features.h" |
56 #include "services/service_manager/public/cpp/service_info.h" | 57 #include "services/service_manager/public/cpp/service_info.h" |
57 #include "services/service_manager/public/interfaces/connector.mojom.h" | 58 #include "services/service_manager/public/interfaces/connector.mojom.h" |
58 #include "services/service_manager/public/interfaces/interface_provider.mojom.h" | 59 #include "services/service_manager/public/interfaces/interface_provider.mojom.h" |
59 #include "third_party/WebKit/public/platform/WebEffectiveConnectionType.h" | 60 #include "third_party/WebKit/public/platform/WebEffectiveConnectionType.h" |
60 #include "third_party/WebKit/public/platform/WebFeaturePolicy.h" | 61 #include "third_party/WebKit/public/platform/WebFeaturePolicy.h" |
61 #include "third_party/WebKit/public/platform/WebFocusType.h" | 62 #include "third_party/WebKit/public/platform/WebFocusType.h" |
62 #include "third_party/WebKit/public/platform/WebLoadingBehaviorFlag.h" | 63 #include "third_party/WebKit/public/platform/WebLoadingBehaviorFlag.h" |
63 #include "third_party/WebKit/public/platform/WebMediaPlayer.h" | 64 #include "third_party/WebKit/public/platform/WebMediaPlayer.h" |
64 #include "third_party/WebKit/public/platform/WebPageVisibilityState.h" | 65 #include "third_party/WebKit/public/platform/WebPageVisibilityState.h" |
(...skipping 820 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
885 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); | 886 void OnDidUpdateSandboxFlags(blink::WebSandboxFlags flags); |
886 void OnSetFrameOwnerProperties( | 887 void OnSetFrameOwnerProperties( |
887 const FrameOwnerProperties& frame_owner_properties); | 888 const FrameOwnerProperties& frame_owner_properties); |
888 void OnAdvanceFocus(blink::WebFocusType type, int32_t source_routing_id); | 889 void OnAdvanceFocus(blink::WebFocusType type, int32_t source_routing_id); |
889 void OnSetFocusedFrame(); | 890 void OnSetFocusedFrame(); |
890 void OnTextTrackSettingsChanged( | 891 void OnTextTrackSettingsChanged( |
891 const FrameMsg_TextTrackSettings_Params& params); | 892 const FrameMsg_TextTrackSettings_Params& params); |
892 void OnPostMessageEvent(const FrameMsg_PostMessage_Params& params); | 893 void OnPostMessageEvent(const FrameMsg_PostMessage_Params& params); |
893 void OnCommitNavigation(const ResourceResponseHead& response, | 894 void OnCommitNavigation(const ResourceResponseHead& response, |
894 const GURL& stream_url, | 895 const GURL& stream_url, |
| 896 mojo::DataPipeConsumerHandle handle, |
895 const CommonNavigationParams& common_params, | 897 const CommonNavigationParams& common_params, |
896 const RequestNavigationParams& request_params); | 898 const RequestNavigationParams& request_params); |
897 void OnFailedNavigation(const CommonNavigationParams& common_params, | 899 void OnFailedNavigation(const CommonNavigationParams& common_params, |
898 const RequestNavigationParams& request_params, | 900 const RequestNavigationParams& request_params, |
899 bool has_stale_copy_in_cache, | 901 bool has_stale_copy_in_cache, |
900 int error_code); | 902 int error_code); |
901 void OnReportContentSecurityPolicyViolation( | 903 void OnReportContentSecurityPolicyViolation( |
902 const content::CSPViolationParams& violation_params); | 904 const content::CSPViolationParams& violation_params); |
903 void OnGetSavableResourceLinks(); | 905 void OnGetSavableResourceLinks(); |
904 void OnGetSerializedHtmlWithLocalLinks( | 906 void OnGetSerializedHtmlWithLocalLinks( |
(...skipping 521 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1426 std::unique_ptr<PendingNavigationInfo> pending_navigation_info_; | 1428 std::unique_ptr<PendingNavigationInfo> pending_navigation_info_; |
1427 | 1429 |
1428 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1430 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
1429 | 1431 |
1430 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1432 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
1431 }; | 1433 }; |
1432 | 1434 |
1433 } // namespace content | 1435 } // namespace content |
1434 | 1436 |
1435 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1437 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
OLD | NEW |