| 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 struct FrameMsg_NewFrame_WidgetParams; | 71 struct FrameMsg_NewFrame_WidgetParams; |
| 72 struct FrameMsg_PostMessage_Params; | 72 struct FrameMsg_PostMessage_Params; |
| 73 struct FrameMsg_SerializeAsMHTML_Params; | 73 struct FrameMsg_SerializeAsMHTML_Params; |
| 74 struct FrameMsg_TextTrackSettings_Params; | 74 struct FrameMsg_TextTrackSettings_Params; |
| 75 | 75 |
| 76 namespace IPC { | 76 namespace IPC { |
| 77 class SyncMessage; | 77 class SyncMessage; |
| 78 } | 78 } |
| 79 | 79 |
| 80 namespace blink { | 80 namespace blink { |
| 81 class WebGeolocationClient; | |
| 82 class WebMouseEvent; | 81 class WebMouseEvent; |
| 83 class WebContentDecryptionModule; | 82 class WebContentDecryptionModule; |
| 84 class WebPresentationClient; | 83 class WebPresentationClient; |
| 85 class WebPushClient; | 84 class WebPushClient; |
| 86 class WebSecurityOrigin; | 85 class WebSecurityOrigin; |
| 87 enum class WebCachePolicy; | 86 enum class WebCachePolicy; |
| 88 struct WebCompositionUnderline; | 87 struct WebCompositionUnderline; |
| 89 struct WebContextMenuData; | 88 struct WebContextMenuData; |
| 90 struct WebCursorInfo; | 89 struct WebCursorInfo; |
| 91 struct WebFindOptions; | 90 struct WebFindOptions; |
| (...skipping 25 matching lines...) Expand all Loading... |
| 117 class Origin; | 116 class Origin; |
| 118 } | 117 } |
| 119 | 118 |
| 120 namespace content { | 119 namespace content { |
| 121 | 120 |
| 122 class ChildFrameCompositingHelper; | 121 class ChildFrameCompositingHelper; |
| 123 class CompositorDependencies; | 122 class CompositorDependencies; |
| 124 class DevToolsAgent; | 123 class DevToolsAgent; |
| 125 class DocumentState; | 124 class DocumentState; |
| 126 class ExternalPopupMenu; | 125 class ExternalPopupMenu; |
| 127 class GeolocationDispatcher; | |
| 128 class ManifestManager; | 126 class ManifestManager; |
| 129 class MediaInterfaceProvider; | 127 class MediaInterfaceProvider; |
| 130 class MediaStreamDispatcher; | 128 class MediaStreamDispatcher; |
| 131 class MediaStreamRendererFactory; | 129 class MediaStreamRendererFactory; |
| 132 class MediaPermissionDispatcher; | 130 class MediaPermissionDispatcher; |
| 133 class MidiDispatcher; | 131 class MidiDispatcher; |
| 134 class NavigationState; | 132 class NavigationState; |
| 135 class NotificationPermissionDispatcher; | 133 class NotificationPermissionDispatcher; |
| 136 class PageState; | 134 class PageState; |
| 137 class PepperPluginInstanceImpl; | 135 class PepperPluginInstanceImpl; |
| (...skipping 430 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 568 void reportFindInPageMatchCount(int request_id, | 566 void reportFindInPageMatchCount(int request_id, |
| 569 int count, | 567 int count, |
| 570 bool final_update) override; | 568 bool final_update) override; |
| 571 void reportFindInPageSelection(int request_id, | 569 void reportFindInPageSelection(int request_id, |
| 572 int active_match_ordinal, | 570 int active_match_ordinal, |
| 573 const blink::WebRect& sel) override; | 571 const blink::WebRect& sel) override; |
| 574 void requestStorageQuota(blink::WebStorageQuotaType type, | 572 void requestStorageQuota(blink::WebStorageQuotaType type, |
| 575 unsigned long long requested_size, | 573 unsigned long long requested_size, |
| 576 blink::WebStorageQuotaCallbacks callbacks) override; | 574 blink::WebStorageQuotaCallbacks callbacks) override; |
| 577 void willOpenWebSocket(blink::WebSocketHandle* handle) override; | 575 void willOpenWebSocket(blink::WebSocketHandle* handle) override; |
| 578 blink::WebGeolocationClient* geolocationClient() override; | |
| 579 blink::WebPushClient* pushClient() override; | 576 blink::WebPushClient* pushClient() override; |
| 580 blink::WebPresentationClient* presentationClient() override; | 577 blink::WebPresentationClient* presentationClient() override; |
| 581 void willStartUsingPeerConnectionHandler( | 578 void willStartUsingPeerConnectionHandler( |
| 582 blink::WebRTCPeerConnectionHandler* handler) override; | 579 blink::WebRTCPeerConnectionHandler* handler) override; |
| 583 blink::WebUserMediaClient* userMediaClient() override; | 580 blink::WebUserMediaClient* userMediaClient() override; |
| 584 blink::WebEncryptedMediaClient* encryptedMediaClient() override; | 581 blink::WebEncryptedMediaClient* encryptedMediaClient() override; |
| 585 blink::WebMIDIClient* webMIDIClient() override; | 582 blink::WebMIDIClient* webMIDIClient() override; |
| 586 bool willCheckAndDispatchMessageEvent( | 583 bool willCheckAndDispatchMessageEvent( |
| 587 blink::WebLocalFrame* source_frame, | 584 blink::WebLocalFrame* source_frame, |
| 588 blink::WebFrame* target_frame, | 585 blink::WebFrame* target_frame, |
| (...skipping 554 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1143 #if defined(VIDEO_HOLE) | 1140 #if defined(VIDEO_HOLE) |
| 1144 // Whether or not this RenderFrameImpl contains a media player. Used to | 1141 // Whether or not this RenderFrameImpl contains a media player. Used to |
| 1145 // register as an observer for video-hole-specific events. | 1142 // register as an observer for video-hole-specific events. |
| 1146 bool contains_media_player_; | 1143 bool contains_media_player_; |
| 1147 #endif | 1144 #endif |
| 1148 | 1145 |
| 1149 // The devtools agent for this frame; only created for main frame and | 1146 // The devtools agent for this frame; only created for main frame and |
| 1150 // local roots. | 1147 // local roots. |
| 1151 DevToolsAgent* devtools_agent_; | 1148 DevToolsAgent* devtools_agent_; |
| 1152 | 1149 |
| 1153 // The geolocation dispatcher attached to this frame, lazily initialized. | |
| 1154 GeolocationDispatcher* geolocation_dispatcher_; | |
| 1155 | |
| 1156 // The push messaging dispatcher attached to this frame, lazily initialized. | 1150 // The push messaging dispatcher attached to this frame, lazily initialized. |
| 1157 PushMessagingDispatcher* push_messaging_dispatcher_; | 1151 PushMessagingDispatcher* push_messaging_dispatcher_; |
| 1158 | 1152 |
| 1159 // The presentation dispatcher implementation attached to this frame, lazily | 1153 // The presentation dispatcher implementation attached to this frame, lazily |
| 1160 // initialized. | 1154 // initialized. |
| 1161 PresentationDispatcher* presentation_dispatcher_; | 1155 PresentationDispatcher* presentation_dispatcher_; |
| 1162 | 1156 |
| 1163 ServiceRegistryImpl service_registry_; | 1157 ServiceRegistryImpl service_registry_; |
| 1164 BlinkServiceRegistryImpl blink_service_registry_; | 1158 BlinkServiceRegistryImpl blink_service_registry_; |
| 1165 | 1159 |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1215 FrameBlameContext* blame_context_; // Not owned. | 1209 FrameBlameContext* blame_context_; // Not owned. |
| 1216 | 1210 |
| 1217 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; | 1211 base::WeakPtrFactory<RenderFrameImpl> weak_factory_; |
| 1218 | 1212 |
| 1219 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); | 1213 DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1220 }; | 1214 }; |
| 1221 | 1215 |
| 1222 } // namespace content | 1216 } // namespace content |
| 1223 | 1217 |
| 1224 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ | 1218 #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| OLD | NEW |