[email protected] | 227692c5 | 2013-05-31 22:43:04 | [diff] [blame] | 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 |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #ifndef CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| 6 | #define CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |
| 7 | |
avi | 1023d01 | 2015-12-25 02:39:14 | [diff] [blame] | 8 | #include <stddef.h> |
| 9 | #include <stdint.h> |
| 10 | |
Charles Reis | 37c9549 | 2016-10-21 20:38:58 | [diff] [blame] | 11 | #include <map> |
dcheng | cedca561 | 2016-04-09 01:40:15 | [diff] [blame] | 12 | #include <memory> |
thestig | e62f738 | 2016-11-08 18:31:39 | [diff] [blame] | 13 | #include <set> |
guidou | 3906a72 | 2015-11-12 22:14:42 | [diff] [blame] | 14 | #include <string> |
Mark Lieu | 6cf3e8fa | 2019-03-09 02:09:01 | [diff] [blame] | 15 | #include <unordered_set> |
Balazs Engedy | ba034e7 | 2017-10-27 22:26:28 | [diff] [blame] | 16 | #include <utility> |
[email protected] | 7a4e253 | 2013-12-02 21:30:02 | [diff] [blame] | 17 | #include <vector> |
| 18 | |
liberato | a8da3b5 | 2017-05-02 20:23:51 | [diff] [blame] | 19 | #include "base/callback.h" |
Brett Wilson | f976d3f | 2017-08-18 17:23:39 | [diff] [blame] | 20 | #include "base/containers/id_map.h" |
[email protected] | 7a4e253 | 2013-12-02 21:30:02 | [diff] [blame] | 21 | #include "base/files/file_path.h" |
[email protected] | a09d53ce | 2014-01-31 00:46:42 | [diff] [blame] | 22 | #include "base/gtest_prod_util.h" |
avi | 1023d01 | 2015-12-25 02:39:14 | [diff] [blame] | 23 | #include "base/macros.h" |
Sadrul Habib Chowdhury | 403923e | 2020-10-01 09:53:16 | [diff] [blame] | 24 | #include "base/memory/read_only_shared_memory_region.h" |
lukasza | bb2101b8 | 2016-06-17 16:52:25 | [diff] [blame] | 25 | #include "base/memory/ref_counted.h" |
[email protected] | abc501e | 2014-01-27 19:27:26 | [diff] [blame] | 26 | #include "base/memory/weak_ptr.h" |
[email protected] | 2e2d963 | 2013-12-03 00:55:26 | [diff] [blame] | 27 | #include "base/observer_list.h" |
liberato | a8da3b5 | 2017-05-02 20:23:51 | [diff] [blame] | 28 | #include "base/optional.h" |
[email protected] | 7a4e253 | 2013-12-02 21:30:02 | [diff] [blame] | 29 | #include "base/process/process_handle.h" |
altimin | 06fe10c | 2017-01-20 11:28:15 | [diff] [blame] | 30 | #include "base/single_thread_task_runner.h" |
liberato | a8da3b5 | 2017-05-02 20:23:51 | [diff] [blame] | 31 | #include "base/unguessable_token.h" |
Avi Drissman | 4544828f | 2019-03-11 20:37:32 | [diff] [blame] | 32 | #include "base/values.h" |
avi | 1023d01 | 2015-12-25 02:39:14 | [diff] [blame] | 33 | #include "build/build_config.h" |
Scott Violet | c78fef73 | 2018-03-06 17:42:53 | [diff] [blame] | 34 | #include "content/common/buildflags.h" |
Mark Lieu | c48b6cc | 2019-03-13 22:55:57 | [diff] [blame] | 35 | #include "content/common/download/mhtml_file_writer.mojom.h" |
ben | 76f52b24 | 2016-06-18 05:42:48 | [diff] [blame] | 36 | #include "content/common/frame.mojom.h" |
danakj | f234243 | 2019-05-15 21:46:09 | [diff] [blame] | 37 | #include "content/common/frame_delete_intention.h" |
Lucas Furukawa Gadani | a9c4568 | 2019-07-31 22:05:14 | [diff] [blame] | 38 | #include "content/common/navigation_params.mojom.h" |
Mario Sanchez Prada | 60a014b7 | 2020-02-20 19:08:06 | [diff] [blame] | 39 | #include "content/common/render_accessibility.mojom.h" |
rockot | 53be7caf | 2016-10-04 20:17:08 | [diff] [blame] | 40 | #include "content/common/renderer.mojom.h" |
Miyoung Shin | 072d405 | 2020-07-13 07:52:44 | [diff] [blame] | 41 | #include "content/common/web_ui.mojom.h" |
Scott Violet | 0de3837c | 2019-09-06 22:51:54 | [diff] [blame] | 42 | #include "content/public/common/browser_controls_state.h" |
Adam Parker | 6a19ba34 | 2018-01-08 23:40:20 | [diff] [blame] | 43 | #include "content/public/common/fullscreen_video_element.mojom.h" |
[email protected] | 65920f33 | 2014-03-04 21:14:18 | [diff] [blame] | 44 | #include "content/public/common/referrer.h" |
paulmeyer | 5d0a5f0 | 2016-01-21 20:15:52 | [diff] [blame] | 45 | #include "content/public/common/stop_find_action.h" |
danakj | 6a81659 | 2018-09-25 18:30:56 | [diff] [blame] | 46 | #include "content/public/common/widget_type.h" |
[email protected] | 227692c5 | 2013-05-31 22:43:04 | [diff] [blame] | 47 | #include "content/public/renderer/render_frame.h" |
Sergey Volk | 8b09c2c5 | 2018-12-12 23:20:40 | [diff] [blame] | 48 | #include "content/public/renderer/render_frame_media_playback_options.h" |
Hiroki Nakagawa | ea68b64 | 2018-04-13 06:24:42 | [diff] [blame] | 49 | #include "content/public/renderer/websocket_handshake_throttle_provider.h" |
Andy Paicu | cd1e4e0 | 2018-05-16 09:59:20 | [diff] [blame] | 50 | #include "content/renderer/content_security_policy_util.h" |
skyostil | b4cce1b | 2016-03-31 17:56:34 | [diff] [blame] | 51 | #include "content/renderer/frame_blame_context.h" |
chcunningham | 86f025e3 | 2017-05-30 20:43:23 | [diff] [blame] | 52 | #include "content/renderer/media/media_factory.h" |
Erik Chen | 10e9b02 | 2019-08-21 23:33:23 | [diff] [blame] | 53 | #include "content/renderer/render_widget.h" |
[email protected] | 227692c5 | 2013-05-31 22:43:04 | [diff] [blame] | 54 | #include "ipc/ipc_message.h" |
lukasza | 70b79c8 | 2015-12-14 20:24:13 | [diff] [blame] | 55 | #include "ipc/ipc_platform_file.h" |
liberato | a8da3b5 | 2017-05-02 20:23:51 | [diff] [blame] | 56 | #include "media/base/routing_token_callback.h" |
Evan Liu | 47f798a | 2020-06-23 20:27:09 | [diff] [blame] | 57 | #include "media/base/speech_recognition_client.h" |
Shimi Zhang | bb73807 | 2019-07-09 18:54:40 | [diff] [blame] | 58 | #include "mojo/public/cpp/bindings/associated_receiver.h" |
Mario Sanchez Prada | b3b852f | 2019-10-04 17:53:24 | [diff] [blame] | 59 | #include "mojo/public/cpp/bindings/associated_remote.h" |
Julie Jeongeun Kim | ed2e5ba7 | 2019-09-12 10:14:17 | [diff] [blame] | 60 | #include "mojo/public/cpp/bindings/pending_associated_receiver.h" |
Julie Jeongeun Kim | 02291d73 | 2019-09-07 03:08:58 | [diff] [blame] | 61 | #include "mojo/public/cpp/bindings/pending_receiver.h" |
Miyoung Shin | 2be9da7 | 2019-09-04 09:04:10 | [diff] [blame] | 62 | #include "mojo/public/cpp/bindings/pending_remote.h" |
Henrique Ferreiro | 3a9751c | 2019-09-30 13:54:07 | [diff] [blame] | 63 | #include "mojo/public/cpp/bindings/receiver.h" |
Gyuyoung Kim | 6c9ce902 | 2019-11-26 05:40:08 | [diff] [blame] | 64 | #include "mojo/public/cpp/bindings/receiver_set.h" |
Julie Jeongeun Kim | 44b804b2 | 2019-08-15 06:14:55 | [diff] [blame] | 65 | #include "mojo/public/cpp/bindings/remote.h" |
scottmg | efb69730 | 2017-04-12 22:37:30 | [diff] [blame] | 66 | #include "mojo/public/cpp/system/data_pipe.h" |
Scott Violet | 02e38b9 | 2018-03-27 23:42:14 | [diff] [blame] | 67 | #include "ppapi/buildflags/buildflags.h" |
Ken Rockot | 54311e6 | 2018-02-10 19:01:52 | [diff] [blame] | 68 | #include "services/network/public/mojom/url_loader_factory.mojom.h" |
Lucas Furukawa Gadani | a6917ab | 2019-10-01 17:37:31 | [diff] [blame] | 69 | #include "services/network/public/mojom/url_response_head.mojom-forward.h" |
ben | 803dba30 | 2017-04-27 20:41:49 | [diff] [blame] | 70 | #include "services/service_manager/public/cpp/binder_registry.h" |
Balazs Engedy | ba034e7 | 2017-10-27 22:26:28 | [diff] [blame] | 71 | #include "services/service_manager/public/cpp/interface_provider.h" |
Ken Rockot | 543f5e3 | 2018-02-04 02:13:50 | [diff] [blame] | 72 | #include "services/service_manager/public/mojom/interface_provider.mojom.h" |
Ken Rockot | 26e4e80 | 2018-07-31 15:03:33 | [diff] [blame] | 73 | #include "third_party/blink/public/common/associated_interfaces/associated_interface_provider.h" |
| 74 | #include "third_party/blink/public/common/associated_interfaces/associated_interface_registry.h" |
Oksana Zhuravlova | fee097c | 2019-07-26 17:01:30 | [diff] [blame] | 75 | #include "third_party/blink/public/common/browser_interface_broker_proxy.h" |
arthursonzogni | 76098e5 | 2020-11-25 14:18:45 | [diff] [blame] | 76 | #include "third_party/blink/public/common/feature_policy/document_policy.h" |
Blink Reformat | a30d423 | 2018-04-07 15:31:06 | [diff] [blame] | 77 | #include "third_party/blink/public/common/feature_policy/feature_policy.h" |
Sergio Villar Senin | 0c142fa | 2019-10-16 08:18:59 | [diff] [blame] | 78 | #include "third_party/blink/public/common/loader/loading_behavior_flag.h" |
Hiroki Nakagawa | 4136615 | 2020-07-27 18:31:40 | [diff] [blame] | 79 | #include "third_party/blink/public/common/loader/previews_state.h" |
Sergio Villar Senin | d7f2ee7f | 2019-10-17 09:02:41 | [diff] [blame] | 80 | #include "third_party/blink/public/common/navigation/triggering_event_info.h" |
Mario Sanchez Prada | 0bd8b8c | 2020-10-21 17:49:23 | [diff] [blame] | 81 | #include "third_party/blink/public/common/renderer_preferences/renderer_preferences.h" |
Miyoung Shin | 3e6393c | 2020-09-18 13:37:20 | [diff] [blame] | 82 | #include "third_party/blink/public/common/unique_name/unique_name_helper.h" |
Julie Jeongeun Kim | daa631e | 2019-02-21 14:17:25 | [diff] [blame] | 83 | #include "third_party/blink/public/mojom/autoplay/autoplay.mojom.h" |
Kent Tamura | 48c549d0 | 2018-09-27 17:19:54 | [diff] [blame] | 84 | #include "third_party/blink/public/mojom/choosers/file_chooser.mojom.h" |
Julie Jeongeun Kim | 42a90df | 2019-03-20 23:13:10 | [diff] [blame] | 85 | #include "third_party/blink/public/mojom/commit_result/commit_result.mojom.h" |
Abhijeet Kandalkar | a5928a0a | 2019-03-13 05:04:42 | [diff] [blame] | 86 | #include "third_party/blink/public/mojom/devtools/console_message.mojom.h" |
Richard Li | e689995 | 2018-11-30 08:42:00 | [diff] [blame] | 87 | #include "third_party/blink/public/mojom/fetch/fetch_api_request.mojom.h" |
Antonio Gomes | 58d3806 | 2020-04-30 01:50:14 | [diff] [blame] | 88 | #include "third_party/blink/public/mojom/frame/frame_owner_element_type.mojom.h" |
Julie Jeongeun Kim | 70a2e4e | 2020-02-21 05:09:54 | [diff] [blame] | 89 | #include "third_party/blink/public/mojom/frame/frame_owner_properties.mojom-forward.h" |
Antonio Sartori | a1fd143 | 2020-11-25 09:10:20 | [diff] [blame] | 90 | #include "third_party/blink/public/mojom/frame/policy_container.mojom-shared.h" |
Antonio Gomes | 4b2c513 | 2020-01-16 11:49:48 | [diff] [blame] | 91 | #include "third_party/blink/public/mojom/frame/user_activation_update_types.mojom.h" |
Miyoung Shin | ff5aff3 | 2020-01-25 04:15:25 | [diff] [blame] | 92 | #include "third_party/blink/public/mojom/input/focus_type.mojom-forward.h" |
Minggang Wang | d712a91 | 2020-07-10 08:12:35 | [diff] [blame] | 93 | #include "third_party/blink/public/mojom/loader/resource_load_info.mojom.h" |
| 94 | #include "third_party/blink/public/mojom/loader/resource_load_info_notifier.mojom.h" |
Guido Urdaneta | 3a7cd9e6 | 2020-07-21 08:31:28 | [diff] [blame] | 95 | #include "third_party/blink/public/mojom/media/renderer_audio_input_stream_factory.mojom.h" |
Matt Falkenhagen | 98515e97 | 2018-06-20 08:12:48 | [diff] [blame] | 96 | #include "third_party/blink/public/mojom/service_worker/service_worker_object.mojom.h" |
Majid Valipour | b9ee097 | 2019-08-22 15:16:23 | [diff] [blame] | 97 | #include "third_party/blink/public/mojom/use_counter/css_property_id.mojom.h" |
Minggang Wang | 035abc1 | 2020-11-05 03:05:15 | [diff] [blame] | 98 | #include "third_party/blink/public/platform/child_url_loader_factory_bundle.h" |
Blink Reformat | a30d423 | 2018-04-07 15:31:06 | [diff] [blame] | 99 | #include "third_party/blink/public/platform/web_media_player.h" |
Blink Reformat | a30d423 | 2018-04-07 15:31:06 | [diff] [blame] | 100 | #include "third_party/blink/public/web/web_ax_object.h" |
| 101 | #include "third_party/blink/public/web/web_document_loader.h" |
Blink Reformat | a30d423 | 2018-04-07 15:31:06 | [diff] [blame] | 102 | #include "third_party/blink/public/web/web_frame_load_type.h" |
| 103 | #include "third_party/blink/public/web/web_frame_serializer_client.h" |
| 104 | #include "third_party/blink/public/web/web_history_commit_type.h" |
Miyoung Shin | 6acc5d5 | 2020-11-22 04:10:38 | [diff] [blame] | 105 | #include "third_party/blink/public/web/web_local_frame.h" |
Mustaq Ahmed | 55944cb | 2018-05-25 20:44:27 | [diff] [blame] | 106 | #include "third_party/blink/public/web/web_local_frame_client.h" |
Blink Reformat | a30d423 | 2018-04-07 15:31:06 | [diff] [blame] | 107 | #include "third_party/blink/public/web/web_meaningful_layout.h" |
| 108 | #include "third_party/blink/public/web/web_script_execution_callback.h" |
Nektarios Paisios | 56ee998 | 2020-04-22 07:53:06 | [diff] [blame] | 109 | #include "ui/accessibility/ax_event.h" |
Dominic Mazzoni | 9050148 | 2018-09-05 22:43:31 | [diff] [blame] | 110 | #include "ui/accessibility/ax_mode.h" |
[email protected] | 4ee6462 | 2014-03-21 22:34:15 | [diff] [blame] | 111 | #include "ui/gfx/range/range.h" |
lukasza | ede9cc0 | 2015-12-30 23:48:32 | [diff] [blame] | 112 | #include "url/gurl.h" |
dominickn | 6c1f1cf | 2016-12-20 06:13:33 | [diff] [blame] | 113 | #include "url/origin.h" |
[email protected] | 227692c5 | 2013-05-31 22:43:04 | [diff] [blame] | 114 | |
[email protected] | 7a4e253 | 2013-12-02 21:30:02 | [diff] [blame] | 115 | namespace blink { |
Minoru Chikamune | e9eb7f9 | 2020-10-26 04:15:16 | [diff] [blame] | 116 | namespace scheduler { |
| 117 | class WebAgentGroupScheduler; |
| 118 | } // namespace scheduler |
| 119 | |
Minggang Wang | e0d5db3 | 2020-10-07 15:55:31 | [diff] [blame] | 120 | class WeakWrapperResourceLoadInfoNotifier; |
Meredith Lane | 4947b2d7 | 2018-01-24 20:54:28 | [diff] [blame] | 121 | class WebComputedAXTree; |
[email protected] | 82ce5b9 | 2014-03-22 05:15:26 | [diff] [blame] | 122 | class WebContentDecryptionModule; |
Ehsan Karamad | ed87958 | 2018-08-08 02:02:29 | [diff] [blame] | 123 | class WebElement; |
Hiroki Nakagawa | 8600c37 | 2020-07-23 01:53:26 | [diff] [blame] | 124 | class WebFrameRequestBlocker; |
lukasza | 2f44efa | 2017-06-06 23:49:51 | [diff] [blame] | 125 | class WebLocalFrame; |
Guido Urdaneta | dc709037 | 2019-07-29 17:59:54 | [diff] [blame] | 126 | class WebMediaStreamDeviceObserver; |
[email protected] | 82ce5b9 | 2014-03-22 05:15:26 | [diff] [blame] | 127 | class WebSecurityOrigin; |
Ehsan Karamad | ed87958 | 2018-08-08 02:02:29 | [diff] [blame] | 128 | class WebString; |
| 129 | class WebURL; |
Avi Drissman | 6ed86dc3 | 2018-03-03 00:29:24 | [diff] [blame] | 130 | struct FramePolicy; |
[email protected] | a09d53ce | 2014-01-31 00:46:42 | [diff] [blame] | 131 | struct WebContextMenuData; |
thestig | 4c8f2a7 | 2016-08-13 01:39:11 | [diff] [blame] | 132 | } // namespace blink |
[email protected] | 7a4e253 | 2013-12-02 21:30:02 | [diff] [blame] | 133 | |
| 134 | namespace gfx { |
[email protected] | a09d53ce | 2014-01-31 00:46:42 | [diff] [blame] | 135 | class Point; |
[email protected] | 7a4e253 | 2013-12-02 21:30:02 | [diff] [blame] | 136 | class Range; |
Adithya Srinivasan | 57f44d0d | 2019-03-22 15:36:02 | [diff] [blame] | 137 | } // namespace gfx |
[email protected] | 7a4e253 | 2013-12-02 21:30:02 | [diff] [blame] | 138 | |
jrummell | 109c3a60 | 2014-12-18 01:08:50 | [diff] [blame] | 139 | namespace media { |
xhwang | 60b430a | 2015-02-01 05:20:46 | [diff] [blame] | 140 | class MediaPermission; |
chcunningham | 86f025e3 | 2017-05-30 20:43:23 | [diff] [blame] | 141 | } |
jrummell | 109c3a60 | 2014-12-18 01:08:50 | [diff] [blame] | 142 | |
rockot | 400ea35b | 2016-10-15 19:15:32 | [diff] [blame] | 143 | namespace service_manager { |
ben | 155ecf8 | 2016-06-21 22:43:26 | [diff] [blame] | 144 | class InterfaceProvider; |
xhwang | 33f939e | 2015-06-23 04:33:42 | [diff] [blame] | 145 | } |
| 146 | |
tommycli | 58e3172c | 2015-09-15 18:18:26 | [diff] [blame] | 147 | namespace url { |
| 148 | class Origin; |
| 149 | } |
| 150 | |
[email protected] | 227692c5 | 2013-05-31 22:43:04 | [diff] [blame] | 151 | namespace content { |
| 152 | |
Tal Pressman | b011b296 | 2020-09-28 11:22:55 | [diff] [blame] | 153 | class AgentSchedulingGroup; |
sammc | 7f96463 | 2016-10-14 04:16:21 | [diff] [blame] | 154 | class BlinkInterfaceRegistryImpl; |
kenrb | a719983 | 2015-01-22 23:44:59 | [diff] [blame] | 155 | class CompositorDependencies; |
Dmitry Gozman | f5b5c5c | 2019-02-07 00:32:32 | [diff] [blame] | 156 | class DocumentState; |
xhwang | 5206d4e6 | 2016-02-05 02:09:55 | [diff] [blame] | 157 | class MediaPermissionDispatcher; |
Arthur Hemery | d3011f6 | 2018-05-30 10:38:44 | [diff] [blame] | 158 | class NavigationClient; |
[email protected] | 7a4e253 | 2013-12-02 21:30:02 | [diff] [blame] | 159 | class PepperPluginInstanceImpl; |
| 160 | class RendererPpapiHost; |
Mario Sanchez Prada | 60a014b7 | 2020-02-20 19:08:06 | [diff] [blame] | 161 | class RenderAccessibilityManager; |
[email protected] | 2e2d963 | 2013-12-03 00:55:26 | [diff] [blame] | 162 | class RenderFrameObserver; |
[email protected] | 227692c5 | 2013-05-31 22:43:04 | [diff] [blame] | 163 | class RenderViewImpl; |
[email protected] | 7a4e253 | 2013-12-02 21:30:02 | [diff] [blame] | 164 | class RenderWidget; |
[email protected] | a09d53ce | 2014-01-31 00:46:42 | [diff] [blame] | 165 | struct CustomContextMenuContext; |
alexmos | bc7eafa | 2014-12-06 01:38:09 | [diff] [blame] | 166 | struct FrameReplicationState; |
[email protected] | 227692c5 | 2013-05-31 22:43:04 | [diff] [blame] | 167 | |
[email protected] | 85d85fd | 2013-06-19 00:57:41 | [diff] [blame] | 168 | class CONTENT_EXPORT RenderFrameImpl |
| 169 | : public RenderFrame, |
Minggang Wang | e0d5db3 | 2020-10-07 15:55:31 | [diff] [blame] | 170 | public blink::mojom::ResourceLoadInfoNotifier, |
Becca Hughes | 3da69b74 | 2018-04-13 19:05:06 | [diff] [blame] | 171 | blink::mojom::AutoplayConfigurationClient, |
Nico Weber | 43ddd7a3 | 2017-08-15 19:19:27 | [diff] [blame] | 172 | mojom::Frame, |
Ken Rockot | 4878545 | 2017-10-25 19:33:14 | [diff] [blame] | 173 | mojom::FrameNavigationControl, |
Adam Parker | 6a19ba34 | 2018-01-08 23:40:20 | [diff] [blame] | 174 | mojom::FullscreenVideoElementHandler, |
Nico Weber | 43ddd7a3 | 2017-08-15 19:19:27 | [diff] [blame] | 175 | mojom::FrameBindingsControl, |
Mark Lieu | 6cf3e8fa | 2019-03-09 02:09:01 | [diff] [blame] | 176 | mojom::MhtmlFileWriter, |
Mustaq Ahmed | 55944cb | 2018-05-25 20:44:27 | [diff] [blame] | 177 | public blink::WebLocalFrameClient, |
Nico Weber | 43ddd7a3 | 2017-08-15 19:19:27 | [diff] [blame] | 178 | service_manager::mojom::InterfaceProvider { |
[email protected] | 227692c5 | 2013-05-31 22:43:04 | [diff] [blame] | 179 | public: |
dcheng | c5ef1a5 | 2015-08-26 20:58:30 | [diff] [blame] | 180 | // Creates a new RenderFrame as the main frame of |render_view|. |
dcheng | 3ce04b6 | 2015-10-26 23:30:55 | [diff] [blame] | 181 | static RenderFrameImpl* CreateMainFrame( |
Tal Pressman | b011b296 | 2020-09-28 11:22:55 | [diff] [blame] | 182 | AgentSchedulingGroup& agent_scheduling_group, |
dcheng | 3ce04b6 | 2015-10-26 23:30:55 | [diff] [blame] | 183 | RenderViewImpl* render_view, |
dcheng | 9e24bd35 | 2016-03-01 19:15:51 | [diff] [blame] | 184 | CompositorDependencies* compositor_deps, |
Daniel Cheng | d5e56ff | 2017-06-24 07:44:02 | [diff] [blame] | 185 | blink::WebFrame* opener, |
Dave Tapuska | 437e5d9 | 2020-10-26 17:59:36 | [diff] [blame] | 186 | mojom::CreateViewParamsPtr* params); |
[email protected] | 2f61bdd | 2013-07-02 18:38:47 | [diff] [blame] | 187 | |
arthursonzogni | 1efc7b96 | 2019-03-14 09:36:33 | [diff] [blame] | 188 | // Creates a new RenderFrame with |routing_id|. If |previous_routing_id| is |
alexmos | a181efc | 2015-09-03 00:39:04 | [diff] [blame] | 189 | // MSG_ROUTING_NONE, it creates the Blink WebLocalFrame and inserts it into |
arthursonzogni | 1efc7b96 | 2019-03-14 09:36:33 | [diff] [blame] | 190 | // the frame tree after the frame identified by |previous_sibling_routing_id|, |
| 191 | // or as the first child if |previous_sibling_routing_id| is MSG_ROUTING_NONE. |
| 192 | // Otherwise, the frame is semi-orphaned until it commits, at which point it |
| 193 | // replaces the previous object identified by |previous_routing_id|. The |
| 194 | // previous object can either be a RenderFrame or a RenderFrameProxy. |
Pavel Feldman | 2523472 | 2017-10-11 02:49:06 | [diff] [blame] | 195 | // The frame's opener is set to the frame identified by |opener_routing_id|. |
| 196 | // The frame is created as a child of the RenderFrame identified by |
| 197 | // |parent_routing_id| or as the top-level frame if |
| 198 | // the latter is MSG_ROUTING_NONE. |
| 199 | // |devtools_frame_token| is passed from the browser and corresponds to the |
arthursonzogni | 1efc7b96 | 2019-03-14 09:36:33 | [diff] [blame] | 200 | // owner FrameTreeNode. It can only be used for tagging requests and calls |
Pavel Feldman | 2523472 | 2017-10-11 02:49:06 | [diff] [blame] | 201 | // for context frame attribution. It should never be passed back to the |
| 202 | // browser as a frame identifier in the control flows calls. |
danakj | cbf1304 | 2019-09-18 21:01:47 | [diff] [blame] | 203 | // The |widget_params| is not null if the frame is to be a local root, which |
| 204 | // means it will own a RenderWidget, in which case the |widget_params| hold |
| 205 | // the routing id and initialization properties for the RenderWidget. |
Pavel Feldman | 2523472 | 2017-10-11 02:49:06 | [diff] [blame] | 206 | // |
| 207 | // Note: This is called only when RenderFrame is being created in response |
| 208 | // to IPC message from the browser process. All other frame creation is driven |
| 209 | // through Blink and Create. |
Balazs Engedy | ba034e7 | 2017-10-27 22:26:28 | [diff] [blame] | 210 | static void CreateFrame( |
Tal Pressman | b011b296 | 2020-09-28 11:22:55 | [diff] [blame] | 211 | AgentSchedulingGroup& agent_scheduling_group, |
Balazs Engedy | ba034e7 | 2017-10-27 22:26:28 | [diff] [blame] | 212 | int routing_id, |
Gyuyoung Kim | 6c9ce902 | 2019-11-26 05:40:08 | [diff] [blame] | 213 | mojo::PendingRemote<service_manager::mojom::InterfaceProvider> |
| 214 | interface_provider, |
Oksana Zhuravlova | fee097c | 2019-07-26 17:01:30 | [diff] [blame] | 215 | mojo::PendingRemote<blink::mojom::BrowserInterfaceBroker> |
| 216 | browser_interface_broker, |
arthursonzogni | 1efc7b96 | 2019-03-14 09:36:33 | [diff] [blame] | 217 | int previous_routing_id, |
Chris Hamilton | 303ad9b | 2020-09-17 13:57:22 | [diff] [blame] | 218 | const base::Optional<base::UnguessableToken>& opener_frame_token, |
Balazs Engedy | ba034e7 | 2017-10-27 22:26:28 | [diff] [blame] | 219 | int parent_routing_id, |
| 220 | int previous_sibling_routing_id, |
Dave Tapuska | 8444938 | 2020-05-01 00:39:04 | [diff] [blame] | 221 | const base::UnguessableToken& frame_token, |
Balazs Engedy | ba034e7 | 2017-10-27 22:26:28 | [diff] [blame] | 222 | const base::UnguessableToken& devtools_frame_token, |
| 223 | const FrameReplicationState& replicated_state, |
| 224 | CompositorDependencies* compositor_deps, |
Dave Tapuska | 8499eec | 2020-03-16 17:54:30 | [diff] [blame] | 225 | mojom::CreateFrameWidgetParamsPtr widget_params, |
Julie Jeongeun Kim | 70a2e4e | 2020-02-21 05:09:54 | [diff] [blame] | 226 | blink::mojom::FrameOwnerPropertiesPtr frame_owner_properties, |
Antonio Sartori | 7f809cc7 | 2020-10-30 07:47:20 | [diff] [blame] | 227 | bool has_committed_real_load, |
Antonio Sartori | 9290b6b | 2020-11-09 10:09:33 | [diff] [blame] | 228 | blink::mojom::PolicyContainerPtr policy_container); |
[email protected] | 82307f6b | 2014-08-07 03:30:12 | [diff] [blame] | 229 | |
[email protected] | 5a7100d | 2014-05-19 01:29:04 | [diff] [blame] | 230 | // Returns the RenderFrameImpl for the given routing ID. |
| 231 | static RenderFrameImpl* FromRoutingID(int routing_id); |
| 232 | |
[email protected] | a5ac6dc | 2014-01-15 07:02:14 | [diff] [blame] | 233 | // Just like RenderFrame::FromWebFrame but returns the implementation. |
| 234 | static RenderFrameImpl* FromWebFrame(blink::WebFrame* web_frame); |
[email protected] | b70da4c | 2014-01-06 19:57:09 | [diff] [blame] | 235 | |
danakj | 5a7b193 | 2018-07-20 15:44:09 | [diff] [blame] | 236 | // Constructor parameters are bundled into a struct. |
Balazs Engedy | ba034e7 | 2017-10-27 22:26:28 | [diff] [blame] | 237 | struct CONTENT_EXPORT CreateParams { |
Tal Pressman | b011b296 | 2020-09-28 11:22:55 | [diff] [blame] | 238 | CreateParams(AgentSchedulingGroup& agent_scheduling_group, |
| 239 | RenderViewImpl* render_view, |
Gyuyoung Kim | 6c9ce902 | 2019-11-26 05:40:08 | [diff] [blame] | 240 | int32_t routing_id, |
| 241 | mojo::PendingRemote<service_manager::mojom::InterfaceProvider> |
| 242 | interface_provider, |
| 243 | mojo::PendingRemote<blink::mojom::BrowserInterfaceBroker> |
| 244 | browser_interface_broker, |
| 245 | const base::UnguessableToken& devtools_frame_token); |
Balazs Engedy | ba034e7 | 2017-10-27 22:26:28 | [diff] [blame] | 246 | ~CreateParams(); |
| 247 | |
| 248 | CreateParams(CreateParams&&); |
| 249 | CreateParams& operator=(CreateParams&&); |
jochen | 664198b | 2015-06-25 14:13:00 | [diff] [blame] | 250 | |
Tal Pressman | b011b296 | 2020-09-28 11:22:55 | [diff] [blame] | 251 | AgentSchedulingGroup* agent_scheduling_group; |
jochen | 664198b | 2015-06-25 14:13:00 | [diff] [blame] | 252 | RenderViewImpl* render_view; |
avi | 1023d01 | 2015-12-25 02:39:14 | [diff] [blame] | 253 | int32_t routing_id; |
Gyuyoung Kim | 6c9ce902 | 2019-11-26 05:40:08 | [diff] [blame] | 254 | mojo::PendingRemote<service_manager::mojom::InterfaceProvider> |
| 255 | interface_provider; |
Oksana Zhuravlova | fee097c | 2019-07-26 17:01:30 | [diff] [blame] | 256 | mojo::PendingRemote<blink::mojom::BrowserInterfaceBroker> |
| 257 | browser_interface_broker; |
Pavel Feldman | 2523472 | 2017-10-11 02:49:06 | [diff] [blame] | 258 | base::UnguessableToken devtools_frame_token; |
jochen | 664198b | 2015-06-25 14:13:00 | [diff] [blame] | 259 | }; |
| 260 | |
Balazs Engedy | ba034e7 | 2017-10-27 22:26:28 | [diff] [blame] | 261 | using CreateRenderFrameImplFunction = RenderFrameImpl* (*)(CreateParams); |
danakj | 6a81659 | 2018-09-25 18:30:56 | [diff] [blame] | 262 | |
Albert J. Wong | 2727e8a8 | 2019-02-15 16:56:11 | [diff] [blame] | 263 | // Web tests override the creation of RenderFrames in order to inject a |
| 264 | // partial testing fake. |
| 265 | static void InstallCreateHook(CreateRenderFrameImplFunction create_frame); |
[email protected] | 2f61bdd | 2013-07-02 18:38:47 | [diff] [blame] | 266 | |
arthursonzogni | 7fe226e | 2020-03-09 15:24:37 | [diff] [blame] | 267 | // Looks up and returns the WebFrame corresponding to a given frame routing |
| 268 | // ID. |
| 269 | static blink::WebFrame* ResolveWebFrame(int opener_frame_routing_id); |
alexmos | 9573300 | 2015-08-24 16:38:09 | [diff] [blame] | 270 | |
Yao Xiao | af79ca9b | 2019-03-12 19:54:18 | [diff] [blame] | 271 | // Possibly set the kOpenerCrossOrigin and kSandboxNoGesture policy in |
| 272 | // |download_policy|. |
Yao Xiao | 2c1171a | 2019-04-01 23:44:32 | [diff] [blame] | 273 | static void MaybeSetDownloadFramePolicy( |
Charlie Harrison | 8c113a3 | 2019-01-07 16:08:29 | [diff] [blame] | 274 | bool is_opener_navigation, |
| 275 | const blink::WebURLRequest& request, |
Yao Xiao | af79ca9b | 2019-03-12 19:54:18 | [diff] [blame] | 276 | const blink::WebSecurityOrigin& current_origin, |
| 277 | bool has_download_sandbox_flag, |
Yao Xiao | 2cc1741 | 2019-11-25 09:04:40 | [diff] [blame] | 278 | bool blocking_downloads_in_sandbox_enabled, |
Yao Xiao | 2c1171a | 2019-04-01 23:44:32 | [diff] [blame] | 279 | bool from_ad, |
Yao Xiao | af79ca9b | 2019-03-12 19:54:18 | [diff] [blame] | 280 | NavigationDownloadPolicy* download_policy); |
Charlie Harrison | 8c113a3 | 2019-01-07 16:08:29 | [diff] [blame] | 281 | |
kdsilva | e013559 | 2016-08-09 17:08:11 | [diff] [blame] | 282 | // Overwrites the given URL to use an HTML5 embed if possible. |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 283 | blink::WebURL OverrideFlashEmbedWithHTML(const blink::WebURL& url) override; |
kdsilva | e013559 | 2016-08-09 17:08:11 | [diff] [blame] | 284 | |
avi | 5c77d21 | 2015-09-25 20:08:25 | [diff] [blame] | 285 | ~RenderFrameImpl() override; |
[email protected] | 227692c5 | 2013-05-31 22:43:04 | [diff] [blame] | 286 | |
Daniel Cheng | 999698bd | 2017-03-22 04:56:37 | [diff] [blame] | 287 | // Returns the unique name of the RenderFrame. |
| 288 | const std::string& unique_name() const { return unique_name_helper_.value(); } |
| 289 | |
[email protected] | 7a4e253 | 2013-12-02 21:30:02 | [diff] [blame] | 290 | // TODO(jam): this is a temporary getter until all the code is transitioned |
| 291 | // to using RenderFrame instead of RenderView. |
wjmaclean | 2a6cab7 | 2016-11-03 18:36:40 | [diff] [blame] | 292 | RenderViewImpl* render_view() { return render_view_; } |
[email protected] | 7a4e253 | 2013-12-02 21:30:02 | [diff] [blame] | 293 | |
[email protected] | 7a4e253 | 2013-12-02 21:30:02 | [diff] [blame] | 294 | // Returns the RenderWidget associated with this frame. |
Albert J. Wong | 7bbf22d | 2018-12-20 00:27:27 | [diff] [blame] | 295 | RenderWidget* GetLocalRootRenderWidget(); |
danakj | d370dbb | 2020-05-21 17:54:38 | [diff] [blame] | 296 | // Returns the blink::WebFrameWidget attached to the RenderWidget that is |
| 297 | // associated with this frame. |
| 298 | blink::WebFrameWidget* GetLocalRootWebFrameWidget(); |
[email protected] | 7a4e253 | 2013-12-02 21:30:02 | [diff] [blame] | 299 | |
danakj | db106b2 | 2020-04-24 15:56:31 | [diff] [blame] | 300 | // This method must be called after the WebLocalFrame backing this RenderFrame |
| 301 | // has been created and added to the frame tree. It creates all objects that |
| 302 | // depend on the frame being at its proper spot. |
| 303 | // |
| 304 | // Virtual for web tests to inject their own behaviour into the WebLocalFrame. |
Keishi Hattori | f5ec9b1 | 2020-08-26 20:29:43 | [diff] [blame] | 305 | virtual void Initialize(blink::WebFrame* parent); |
[email protected] | 0287e76 | 2014-04-11 13:07:58 | [diff] [blame] | 306 | |
[email protected] | 723971b | 2014-02-12 11:08:25 | [diff] [blame] | 307 | // Start/Stop loading notifications. |
| 308 | // TODO(nasko): Those are page-level methods at this time and come from |
Mustaq Ahmed | 55944cb | 2018-05-25 20:44:27 | [diff] [blame] | 309 | // WebViewClient. We should move them to be WebLocalFrameClient calls and put |
[email protected] | 723971b | 2014-02-12 11:08:25 | [diff] [blame] | 310 | // logic in the browser side to balance starts/stops. |
Camille Lamy | efd54b0 | 2018-10-04 16:54:14 | [diff] [blame] | 311 | void DidStartLoading() override; |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 312 | void DidStopLoading() override; |
[email protected] | 723971b | 2014-02-12 11:08:25 | [diff] [blame] | 313 | |
Mario Sanchez Prada | 60a014b7 | 2020-02-20 19:08:06 | [diff] [blame] | 314 | // Returns the object implementing the RenderAccessibility mojo interface and |
| 315 | // serves as a bridge between RenderFrameImpl and RenderAccessibilityImpl. |
| 316 | RenderAccessibilityManager* GetRenderAccessibilityManager() { |
| 317 | return render_accessibility_manager_.get(); |
Sergey Poromov | 79fbef22 | 2020-02-20 14:13:57 | [diff] [blame] | 318 | } |
Mario Sanchez Prada | 68d4bec | 2020-02-20 13:42:05 | [diff] [blame] | 319 | |
Mario Sanchez Prada | 60a014b7 | 2020-02-20 19:08:06 | [diff] [blame] | 320 | // Called from RenderAccessibilityManager to let the RenderFrame know when the |
| 321 | // accessibility mode has changed, so that it can notify its observers. |
| 322 | void NotifyAccessibilityModeChange(ui::AXMode new_mode); |
| 323 | |
Alex Moshchuk | 4307662 | 2017-09-08 21:20:44 | [diff] [blame] | 324 | // Whether or not the frame is currently swapped into the frame tree. If |
| 325 | // this is false, this is a provisional frame which has not committed yet, |
| 326 | // and which will swap with a proxy when it commits. |
| 327 | // |
| 328 | // TODO(https://crbug.com/578349): Remove this once provisional frames are |
| 329 | // gone, and clean up code that depends on it. |
| 330 | bool in_frame_tree() { return in_frame_tree_; } |
| 331 | |
brettw | 4b46108 | 2016-11-19 18:55:16 | [diff] [blame] | 332 | #if BUILDFLAG(ENABLE_PLUGINS) |
[email protected] | 271ff579 | 2013-12-04 22:29:31 | [diff] [blame] | 333 | // Notification that a PPAPI plugin has been created. |
| 334 | void PepperPluginCreated(RendererPpapiHost* host); |
| 335 | |
[email protected] | 7a4e253 | 2013-12-02 21:30:02 | [diff] [blame] | 336 | // Informs the render view that a PPAPI plugin has changed text input status. |
| 337 | void PepperTextInputTypeChanged(PepperPluginInstanceImpl* instance); |
| 338 | void PepperCaretPositionChanged(PepperPluginInstanceImpl* instance); |
| 339 | |
| 340 | // Cancels current composition. |
| 341 | void PepperCancelComposition(PepperPluginInstanceImpl* instance); |
| 342 | |
| 343 | // Informs the render view that a PPAPI plugin has changed selection. |
| 344 | void PepperSelectionChanged(PepperPluginInstanceImpl* instance); |
| 345 | |
[email protected] | 7a4e253 | 2013-12-02 21:30:02 | [diff] [blame] | 346 | // Notification that the given plugin has crashed. |
| 347 | void PluginCrashed(const base::FilePath& plugin_path, |
| 348 | base::ProcessId plugin_pid); |
| 349 | |
brettw | 4b46108 | 2016-11-19 18:55:16 | [diff] [blame] | 350 | #endif // BUILDFLAG(ENABLE_PLUGINS) |
[email protected] | 7a4e253 | 2013-12-02 21:30:02 | [diff] [blame] | 351 | |
thestig | cb959ce | 2016-11-17 05:56:32 | [diff] [blame] | 352 | void ScriptedPrint(bool user_initiated); |
| 353 | |
[email protected] | 227692c5 | 2013-05-31 22:43:04 | [diff] [blame] | 354 | // IPC::Sender |
dcheng | 6d18e40 | 2014-10-21 12:32:52 | [diff] [blame] | 355 | bool Send(IPC::Message* msg) override; |
[email protected] | 227692c5 | 2013-05-31 22:43:04 | [diff] [blame] | 356 | |
| 357 | // IPC::Listener |
dcheng | 6d18e40 | 2014-10-21 12:32:52 | [diff] [blame] | 358 | bool OnMessageReceived(const IPC::Message& msg) override; |
rockot | ce2138c | 2016-09-16 00:09:18 | [diff] [blame] | 359 | void OnAssociatedInterfaceRequest( |
| 360 | const std::string& interface_name, |
| 361 | mojo::ScopedInterfaceEndpointHandle handle) override; |
[email protected] | 227692c5 | 2013-05-31 22:43:04 | [diff] [blame] | 362 | |
[email protected] | 271ff579 | 2013-12-04 22:29:31 | [diff] [blame] | 363 | // RenderFrame implementation: |
dcheng | 6d18e40 | 2014-10-21 12:32:52 | [diff] [blame] | 364 | RenderView* GetRenderView() override; |
dmazzoni | 8e6fe4d | 2016-06-27 06:35:37 | [diff] [blame] | 365 | RenderAccessibility* GetRenderAccessibility() override; |
Dominic Mazzoni | 8ea907968 | 2019-12-26 20:08:31 | [diff] [blame] | 366 | std::unique_ptr<AXTreeSnapshotter> CreateAXTreeSnapshotter() override; |
dcheng | 6d18e40 | 2014-10-21 12:32:52 | [diff] [blame] | 367 | int GetRoutingID() override; |
| 368 | blink::WebLocalFrame* GetWebFrame() override; |
Gyuyoung Kim | a252d4a | 2020-09-16 07:20:31 | [diff] [blame] | 369 | const blink::web_pref::WebPreferences& GetBlinkPreferences() override; |
dcheng | 6d18e40 | 2014-10-21 12:32:52 | [diff] [blame] | 370 | int ShowContextMenu(ContextMenuClient* client, |
Lukasz Anforowicz | c951368 | 2020-03-11 03:13:26 | [diff] [blame] | 371 | const UntrustworthyContextMenuParams& params) override; |
dcheng | 6d18e40 | 2014-10-21 12:32:52 | [diff] [blame] | 372 | void CancelContextMenu(int request_id) override; |
Jan Wilken Dörrie | 225749c9 | 2019-10-29 01:22:07 | [diff] [blame] | 373 | void ShowVirtualKeyboard() override; |
Dave Tapuska | a361ec8 | 2020-11-02 18:08:38 | [diff] [blame] | 374 | blink::WebPlugin* CreatePlugin(const WebPluginInfo& info, |
| 375 | const blink::WebPluginParams& params) override; |
dcheng | 6d18e40 | 2014-10-21 12:32:52 | [diff] [blame] | 376 | void ExecuteJavaScript(const base::string16& javascript) override; |
dglazkov | 2e140f5 | 2015-09-28 16:10:07 | [diff] [blame] | 377 | bool IsMainFrame() override; |
dcheng | 6d18e40 | 2014-10-21 12:32:52 | [diff] [blame] | 378 | bool IsHidden() override; |
Ben Goodger | d5ee3cc | 2017-07-24 23:11:36 | [diff] [blame] | 379 | void BindLocalInterface( |
| 380 | const std::string& interface_name, |
| 381 | mojo::ScopedMessagePipeHandle interface_pipe) override; |
rockot | 400ea35b | 2016-10-15 19:15:32 | [diff] [blame] | 382 | service_manager::InterfaceProvider* GetRemoteInterfaces() override; |
Sam McNally | 52e5028 | 2017-11-29 00:54:02 | [diff] [blame] | 383 | blink::AssociatedInterfaceRegistry* GetAssociatedInterfaceRegistry() override; |
| 384 | blink::AssociatedInterfaceProvider* GetRemoteAssociatedInterfaces() override; |
brettw | 4b46108 | 2016-11-19 18:55:16 | [diff] [blame] | 385 | #if BUILDFLAG(ENABLE_PLUGINS) |
nasko | 2d67b3c | 2017-01-04 14:48:19 | [diff] [blame] | 386 | void PluginDidStartLoading() override; |
| 387 | void PluginDidStopLoading() override; |
tommycli | d481c48 | 2014-12-03 01:50:41 | [diff] [blame] | 388 | #endif |
dcheng | 6d18e40 | 2014-10-21 12:32:52 | [diff] [blame] | 389 | bool IsFTPDirectoryListing() override; |
changwan | 44664cd | 2017-05-23 19:14:34 | [diff] [blame] | 390 | void SetSelectedText(const base::string16& selection_text, |
| 391 | size_t offset, |
| 392 | const gfx::Range& range) override; |
Abhijeet Kandalkar | a5928a0a | 2019-03-13 05:04:42 | [diff] [blame] | 393 | void AddMessageToConsole(blink::mojom::ConsoleMessageLevel level, |
rdevlin.cronin | b2cec91 | 2015-06-24 20:36:01 | [diff] [blame] | 394 | const std::string& message) override; |
Hiroki Nakagawa | 4136615 | 2020-07-27 18:31:40 | [diff] [blame] | 395 | blink::PreviewsState GetPreviewsState() override; |
Lucas Furukawa Gadani | d51ff5d6 | 2018-12-07 21:26:49 | [diff] [blame] | 396 | bool IsPasting() override; |
jam | 485372b1 | 2016-10-26 19:46:07 | [diff] [blame] | 397 | bool IsBrowserSideNavigationPending() override; |
Dmitry Gozman | d96e493a8 | 2018-11-28 01:13:33 | [diff] [blame] | 398 | void LoadHTMLString(const std::string& html, |
| 399 | const GURL& base_url, |
| 400 | const std::string& text_encoding, |
| 401 | const GURL& unreachable_url, |
| 402 | bool replace_current_item) override; |
Alexander Timin | 31036811 | 2017-09-13 10:01:44 | [diff] [blame] | 403 | scoped_refptr<base::SingleThreadTaskRunner> GetTaskRunner( |
| 404 | blink::TaskType task_type) override; |
Lucas Furukawa Gadani | d51ff5d6 | 2018-12-07 21:26:49 | [diff] [blame] | 405 | int GetEnabledBindings() override; |
Dominic Mazzoni | c6f4bc7 | 2017-12-22 22:03:43 | [diff] [blame] | 406 | void SetAccessibilityModeForTest(ui::AXMode new_mode) override; |
Chong Zhang | b7c8d1ce | 2018-03-13 19:14:11 | [diff] [blame] | 407 | scoped_refptr<network::SharedURLLoaderFactory> GetURLLoaderFactory() override; |
Sergey Volk | 8b09c2c5 | 2018-12-12 23:20:40 | [diff] [blame] | 408 | const RenderFrameMediaPlaybackOptions& GetRenderFrameMediaPlaybackOptions() |
| 409 | override; |
| 410 | void SetRenderFrameMediaPlaybackOptions( |
| 411 | const RenderFrameMediaPlaybackOptions& opts) override; |
Dave Tapuska | fc457ca83 | 2019-08-06 19:52:22 | [diff] [blame] | 412 | void SetAllowsCrossBrowsingInstanceFrameLookup() override; |
danakj | 3dcceba | 2019-10-09 22:16:23 | [diff] [blame] | 413 | gfx::RectF ElementBoundsInWindow(const blink::WebElement& element) override; |
| 414 | void ConvertViewportToWindow(blink::WebRect* rect) override; |
danakj | 90e9d34 | 2019-10-10 19:14:48 | [diff] [blame] | 415 | float GetDeviceScaleFactor() override; |
[email protected] | 271ff579 | 2013-12-04 22:29:31 | [diff] [blame] | 416 | |
Becca Hughes | 3da69b74 | 2018-04-13 19:05:06 | [diff] [blame] | 417 | // blink::mojom::AutoplayConfigurationClient implementation: |
| 418 | void AddAutoplayFlags(const url::Origin& origin, |
| 419 | const int32_t flags) override; |
Becca Hughes | 9470c45 | 2017-07-27 22:51:05 | [diff] [blame] | 420 | |
Minggang Wang | d712a91 | 2020-07-10 08:12:35 | [diff] [blame] | 421 | // blink::mojom::ResourceLoadInfoNotifier implementation: |
Minggang Wang | 656dfe07 | 2020-10-13 15:50:49 | [diff] [blame] | 422 | #if defined(OS_ANDROID) |
| 423 | void NotifyUpdateUserGestureCarryoverInfo() override; |
| 424 | #endif |
Minggang Wang | d712a91 | 2020-07-10 08:12:35 | [diff] [blame] | 425 | void NotifyResourceRedirectReceived( |
| 426 | const net::RedirectInfo& redirect_info, |
| 427 | network::mojom::URLResponseHeadPtr redirect_response) override; |
| 428 | void NotifyResourceResponseReceived( |
Minggang Wang | e0d5db3 | 2020-10-07 15:55:31 | [diff] [blame] | 429 | int64_t request_id, |
| 430 | const GURL& response_url, |
Minggang Wang | d712a91 | 2020-07-10 08:12:35 | [diff] [blame] | 431 | network::mojom::URLResponseHeadPtr head, |
Minggang Wang | e0d5db3 | 2020-10-07 15:55:31 | [diff] [blame] | 432 | network::mojom::RequestDestination request_destination, |
Minggang Wang | d712a91 | 2020-07-10 08:12:35 | [diff] [blame] | 433 | int32_t previews_state) override; |
Minggang Wang | e0d5db3 | 2020-10-07 15:55:31 | [diff] [blame] | 434 | void NotifyResourceTransferSizeUpdated(int64_t request_id, |
Minggang Wang | d712a91 | 2020-07-10 08:12:35 | [diff] [blame] | 435 | int32_t transfer_size_diff) override; |
| 436 | void NotifyResourceLoadCompleted( |
| 437 | blink::mojom::ResourceLoadInfoPtr resource_load_info, |
| 438 | const ::network::URLLoaderCompletionStatus& status) override; |
Minggang Wang | e0d5db3 | 2020-10-07 15:55:31 | [diff] [blame] | 439 | void NotifyResourceLoadCanceled(int64_t request_id) override; |
Minggang Wang | d712a91 | 2020-07-10 08:12:35 | [diff] [blame] | 440 | void Clone(mojo::PendingReceiver<blink::mojom::ResourceLoadInfoNotifier> |
| 441 | pending_resource_load_info_notifier) override; |
| 442 | |
ben | 76f52b24 | 2016-06-18 05:42:48 | [diff] [blame] | 443 | // mojom::Frame implementation: |
| 444 | void GetInterfaceProvider( |
Gyuyoung Kim | 6c9ce902 | 2019-11-26 05:40:08 | [diff] [blame] | 445 | mojo::PendingReceiver<service_manager::mojom::InterfaceProvider> receiver) |
| 446 | override; |
Daniel Cheng | 118f9e28 | 2017-11-10 03:28:44 | [diff] [blame] | 447 | void GetCanonicalUrlForSharing( |
| 448 | GetCanonicalUrlForSharingCallback callback) override; |
John Abd-El-Malek | 9405d80e | 2018-08-08 16:50:21 | [diff] [blame] | 449 | void BlockRequests() override; |
| 450 | void ResumeBlockedRequests() override; |
Scott Violet | 0de3837c | 2019-09-06 22:51:54 | [diff] [blame] | 451 | void UpdateBrowserControlsState(BrowserControlsState constraints, |
| 452 | BrowserControlsState current, |
| 453 | bool animate) override; |
Mario Sanchez Prada | 749007a | 2020-03-13 16:48:29 | [diff] [blame] | 454 | void SnapshotAccessibilityTree( |
| 455 | uint32_t ax_mode, |
| 456 | SnapshotAccessibilityTreeCallback callback) override; |
Mario Sanchez Prada | 13bbad5 | 2020-06-01 18:12:29 | [diff] [blame] | 457 | void GetSerializedHtmlWithLocalLinks( |
| 458 | const base::flat_map<GURL, base::FilePath>& url_map, |
| 459 | const base::flat_map<base::UnguessableToken, base::FilePath>& |
| 460 | frame_token_map, |
| 461 | bool save_with_empty_url, |
| 462 | mojo::PendingRemote<mojom::FrameHTMLSerializerHandler> handler_remote) |
| 463 | override; |
Dave Tapuska | 1dd5774 | 2019-02-07 01:07:37 | [diff] [blame] | 464 | |
Eve Martin-Jones | 40f552c | 2018-02-14 22:47:32 | [diff] [blame] | 465 | #if defined(OS_ANDROID) |
Luciano Pacheco | 8528c16f | 2017-12-14 07:10:56 | [diff] [blame] | 466 | void ExtractSmartClipData( |
| 467 | const gfx::Rect& rect, |
| 468 | const ExtractSmartClipDataCallback callback) override; |
Eve Martin-Jones | 40f552c | 2018-02-14 22:47:32 | [diff] [blame] | 469 | #endif |
ben | 76f52b24 | 2016-06-18 05:42:48 | [diff] [blame] | 470 | |
sammc | 7f6c6a0 | 2017-01-30 00:53:51 | [diff] [blame] | 471 | // mojom::FrameBindingsControl implementation: |
| 472 | void AllowBindings(int32_t enabled_bindings_flags) override; |
Nasko Oskov | 8a73f7d | 2019-09-27 22:29:32 | [diff] [blame] | 473 | void EnableMojoJsBindings() override; |
Miyoung Shin | 072d405 | 2020-07-13 07:52:44 | [diff] [blame] | 474 | void BindWebUI(mojo::PendingReceiver<mojom::WebUI> Receiver, |
| 475 | mojo::PendingRemote<mojom::WebUIHost> remote) override; |
sammc | 7f6c6a0 | 2017-01-30 00:53:51 | [diff] [blame] | 476 | |
Dmitry Gozman | 9b89000 | 2020-05-27 15:24:42 | [diff] [blame] | 477 | // These mirror mojom::NavigationClient, called by NavigationClient. |
Ken Rockot | be87ab32 | 2017-11-02 19:40:23 | [diff] [blame] | 478 | void CommitNavigation( |
Lucas Furukawa Gadani | a9c4568 | 2019-07-31 22:05:14 | [diff] [blame] | 479 | mojom::CommonNavigationParamsPtr common_params, |
| 480 | mojom::CommitNavigationParamsPtr commit_params, |
Lucas Furukawa Gadani | 81e294b | 2019-08-29 16:26:32 | [diff] [blame] | 481 | network::mojom::URLResponseHeadPtr response_head, |
Minggang Wang | 47a7822 | 2019-06-28 17:05:46 | [diff] [blame] | 482 | mojo::ScopedDataPipeConsumerHandle response_body, |
John Abd-El-Malek | b165dc5 | 2018-01-18 17:12:18 | [diff] [blame] | 483 | network::mojom::URLLoaderClientEndpointsPtr url_loader_client_endpoints, |
Dominic Farolino | bc280d2 | 2019-12-05 05:49:24 | [diff] [blame] | 484 | std::unique_ptr<blink::PendingURLLoaderFactoryBundle> |
Arthur Hemery | 1f46de0 | 2019-01-31 16:41:53 | [diff] [blame] | 485 | subresource_loader_factories, |
Hiroki Nakagawa | d7ed213e | 2020-07-21 13:19:28 | [diff] [blame] | 486 | base::Optional<std::vector<blink::mojom::TransferrableURLLoaderPtr>> |
John Abd-El-Malek | ecc6f5f | 2018-03-02 18:47:39 | [diff] [blame] | 487 | subresource_overrides, |
Hiroki Nakagawa | cdbc791 | 2018-11-30 11:30:05 | [diff] [blame] | 488 | blink::mojom::ControllerServiceWorkerInfoPtr |
| 489 | controller_service_worker_info, |
Hiroki Nakagawa | 74cdcf3 | 2020-05-15 04:57:21 | [diff] [blame] | 490 | blink::mojom::ServiceWorkerContainerInfoForClientPtr container_info, |
Kinuko Yasuda | 8fb556c | 2019-07-16 05:47:55 | [diff] [blame] | 491 | mojo::PendingRemote<network::mojom::URLLoaderFactory> |
| 492 | prefetch_loader_factory, |
clamy | 6b92fcf | 2018-06-01 13:51:37 | [diff] [blame] | 493 | const base::UnguessableToken& devtools_navigation_token, |
Antonio Sartori | 9290b6b | 2020-11-09 10:09:33 | [diff] [blame] | 494 | blink::mojom::PolicyContainerPtr policy_container, |
Dmitry Gozman | 9b89000 | 2020-05-27 15:24:42 | [diff] [blame] | 495 | mojom::NavigationClient::CommitNavigationCallback commit_callback); |
Doug Turner | 84693be | 2017-12-19 00:18:46 | [diff] [blame] | 496 | void CommitFailedNavigation( |
Lucas Furukawa Gadani | ef8290a | 2019-07-29 20:27:51 | [diff] [blame] | 497 | mojom::CommonNavigationParamsPtr common_params, |
Lucas Furukawa Gadani | a9c4568 | 2019-07-31 22:05:14 | [diff] [blame] | 498 | mojom::CommitNavigationParamsPtr commit_params, |
Doug Turner | 84693be | 2017-12-19 00:18:46 | [diff] [blame] | 499 | bool has_stale_copy_in_cache, |
| 500 | int error_code, |
dalyk | d3131c3 | 2020-01-06 17:52:57 | [diff] [blame] | 501 | net::ResolveErrorInfo resolve_error_info, |
Doug Turner | 84693be | 2017-12-19 00:18:46 | [diff] [blame] | 502 | const base::Optional<std::string>& error_page_content, |
Dominic Farolino | bc280d2 | 2019-12-05 05:49:24 | [diff] [blame] | 503 | std::unique_ptr<blink::PendingURLLoaderFactoryBundle> |
Arthur Hemery | 1f46de0 | 2019-01-31 16:41:53 | [diff] [blame] | 504 | subresource_loader_factories, |
Arthur Hemery | 161d1e6 | 2019-02-06 16:46:32 | [diff] [blame] | 505 | mojom::NavigationClient::CommitFailedNavigationCallback |
| 506 | per_navigation_mojo_interface_callback); |
| 507 | |
Dmitry Gozman | 9b89000 | 2020-05-27 15:24:42 | [diff] [blame] | 508 | // mojom::FrameNavigationControl implementation: |
clamy | af4bf2d9 | 2018-02-06 10:54:36 | [diff] [blame] | 509 | void CommitSameDocumentNavigation( |
Lucas Furukawa Gadani | ef8290a | 2019-07-29 20:27:51 | [diff] [blame] | 510 | mojom::CommonNavigationParamsPtr common_params, |
Lucas Furukawa Gadani | a9c4568 | 2019-07-31 22:05:14 | [diff] [blame] | 511 | mojom::CommitNavigationParamsPtr commit_params, |
clamy | af4bf2d9 | 2018-02-06 10:54:36 | [diff] [blame] | 512 | CommitSameDocumentNavigationCallback callback) override; |
clamy | b1df7b96 | 2018-02-01 17:38:17 | [diff] [blame] | 513 | void HandleRendererDebugURL(const GURL& url) override; |
Chong Zhang | 7306b0b | 2018-01-24 05:59:24 | [diff] [blame] | 514 | void UpdateSubresourceLoaderFactories( |
Dominic Farolino | bc280d2 | 2019-12-05 05:49:24 | [diff] [blame] | 515 | std::unique_ptr<blink::PendingURLLoaderFactoryBundle> |
Arthur Hemery | 1f46de0 | 2019-01-31 16:41:53 | [diff] [blame] | 516 | subresource_loader_factories) override; |
Dmitry Gozman | 6adf95b | 2018-10-10 22:12:19 | [diff] [blame] | 517 | void BindDevToolsAgent( |
Julie Jeongeun Kim | 0788779 | 2019-08-13 11:05:48 | [diff] [blame] | 518 | mojo::PendingAssociatedRemote<blink::mojom::DevToolsAgentHost> host, |
Andrey Kosyakov | 5bb020f | 2020-03-19 17:28:19 | [diff] [blame] | 519 | mojo::PendingAssociatedReceiver<blink::mojom::DevToolsAgent> receiver) |
Julie Jeongeun Kim | 0788779 | 2019-08-13 11:05:48 | [diff] [blame] | 520 | override; |
Maksim Sadym | cfb8f8d | 2020-09-30 20:30:45 | [diff] [blame] | 521 | void JavaScriptMethodExecuteRequest( |
| 522 | const base::string16& object_name, |
| 523 | const base::string16& method_name, |
| 524 | base::Value arguments, |
| 525 | bool wants_result, |
| 526 | JavaScriptMethodExecuteRequestCallback callback) override; |
Avi Drissman | 4544828f | 2019-03-11 20:37:32 | [diff] [blame] | 527 | void JavaScriptExecuteRequest( |
| 528 | const base::string16& javascript, |
Avi Drissman | 8e3ebe9 | 2019-06-10 20:26:11 | [diff] [blame] | 529 | bool wants_result, |
Avi Drissman | 4544828f | 2019-03-11 20:37:32 | [diff] [blame] | 530 | JavaScriptExecuteRequestCallback callback) override; |
| 531 | void JavaScriptExecuteRequestForTests( |
| 532 | const base::string16& javascript, |
Avi Drissman | 8e3ebe9 | 2019-06-10 20:26:11 | [diff] [blame] | 533 | bool wants_result, |
Avi Drissman | 4544828f | 2019-03-11 20:37:32 | [diff] [blame] | 534 | bool has_user_gesture, |
Hajime Hoshi | f85e7cf72 | 2019-07-19 00:54:49 | [diff] [blame] | 535 | int32_t world_id, |
Avi Drissman | 4544828f | 2019-03-11 20:37:32 | [diff] [blame] | 536 | JavaScriptExecuteRequestForTestsCallback callback) override; |
| 537 | void JavaScriptExecuteRequestInIsolatedWorld( |
| 538 | const base::string16& javascript, |
Avi Drissman | 8e3ebe9 | 2019-06-10 20:26:11 | [diff] [blame] | 539 | bool wants_result, |
Avi Drissman | 4544828f | 2019-03-11 20:37:32 | [diff] [blame] | 540 | int32_t world_id, |
| 541 | JavaScriptExecuteRequestInIsolatedWorldCallback callback) override; |
Gyuyoung Kim | 11aad0b6 | 2020-04-29 16:00:26 | [diff] [blame] | 542 | void SwapIn() override; |
Hajime Hoshi | 35ad74f | 2019-03-07 08:38:05 | [diff] [blame] | 543 | |
Adam Parker | 6a19ba34 | 2018-01-08 23:40:20 | [diff] [blame] | 544 | // mojom::FullscreenVideoElementHandler implementation: |
| 545 | void RequestFullscreenVideoElement() override; |
| 546 | |
Mark Lieu | 6cf3e8fa | 2019-03-09 02:09:01 | [diff] [blame] | 547 | // mojom::MhtmlFileWriter implementation: |
| 548 | void SerializeAsMHTML(const mojom::SerializeAsMHTMLParamsPtr params, |
| 549 | SerializeAsMHTMLCallback callback) override; |
| 550 | |
Mustaq Ahmed | 55944cb | 2018-05-25 20:44:27 | [diff] [blame] | 551 | // blink::WebLocalFrameClient implementation: |
Mario Sanchez Prada | dde87ee5 | 2019-05-29 07:55:01 | [diff] [blame] | 552 | void BindToFrame(blink::WebNavigationControl* frame) override; |
thestig | f7d2fa1 | 2017-05-05 19:11:43 | [diff] [blame] | 553 | blink::WebPlugin* CreatePlugin(const blink::WebPluginParams& params) override; |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 554 | blink::WebMediaPlayer* CreateMediaPlayer( |
guidou | 9bfe4e2f | 2016-04-09 08:31:19 | [diff] [blame] | 555 | const blink::WebMediaPlayerSource& source, |
srirama.m | 26f864d0 | 2015-07-14 05:21:46 | [diff] [blame] | 556 | blink::WebMediaPlayerClient* client, |
Ted Meyer | cda47a0e | 2019-08-13 20:41:11 | [diff] [blame] | 557 | blink::MediaInspectorContext* inspector_context, |
srirama.m | 26f864d0 | 2015-07-14 05:21:46 | [diff] [blame] | 558 | blink::WebMediaPlayerEncryptedMediaClient* encrypted_client, |
guidou | 9c3cc3e | 2015-10-27 13:38:15 | [diff] [blame] | 559 | blink::WebContentDecryptionModule* initial_cdm, |
Erik Chen | 4f2f6f0d | 2019-08-14 23:17:23 | [diff] [blame] | 560 | const blink::WebString& sink_id) override; |
Hiroki Nakagawa | 6bcbd190 | 2017-06-09 07:13:20 | [diff] [blame] | 561 | std::unique_ptr<blink::WebContentSettingsClient> |
| 562 | CreateWorkerContentSettingsClient() override; |
Abigail Klein | 82807c55 | 2020-04-06 19:58:07 | [diff] [blame] | 563 | #if !defined(OS_ANDROID) |
Evan Liu | 47f798a | 2020-06-23 20:27:09 | [diff] [blame] | 564 | std::unique_ptr<media::SpeechRecognitionClient> CreateSpeechRecognitionClient( |
Evan Liu | ca88540 | 2020-06-23 22:02:13 | [diff] [blame] | 565 | media::SpeechRecognitionClient::OnReadyCallback callback) override; |
Abigail Klein | 82807c55 | 2020-04-06 19:58:07 | [diff] [blame] | 566 | #endif |
Hiroshige Hayashizaki | 3be0467 | 2018-11-09 02:27:39 | [diff] [blame] | 567 | scoped_refptr<blink::WebWorkerFetchContext> CreateWorkerFetchContext() |
horo | e612058 | 2017-04-26 01:48:59 | [diff] [blame] | 568 | override; |
Hiroki Nakagawa | 599efcb | 2019-02-27 12:22:33 | [diff] [blame] | 569 | scoped_refptr<blink::WebWorkerFetchContext> |
| 570 | CreateWorkerFetchContextForPlzDedicatedWorker( |
| 571 | blink::WebDedicatedWorkerHostFactoryClient* factory_client) override; |
Kinuko Yasuda | 027bcfb | 2019-12-05 12:49:08 | [diff] [blame] | 572 | std::unique_ptr<blink::WebPrescientNetworking> CreatePrescientNetworking() |
| 573 | override; |
Minggang Wang | e0d5db3 | 2020-10-07 15:55:31 | [diff] [blame] | 574 | std::unique_ptr<blink::ResourceLoadInfoNotifierWrapper> |
| 575 | CreateResourceLoadInfoNotifierWrapper() override; |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 576 | blink::BlameContext* GetFrameBlameContext() override; |
kinuko | c362658 | 2017-05-01 07:27:52 | [diff] [blame] | 577 | std::unique_ptr<blink::WebServiceWorkerProvider> CreateServiceWorkerProvider() |
| 578 | override; |
Sam McNally | 52e5028 | 2017-11-29 00:54:02 | [diff] [blame] | 579 | blink::AssociatedInterfaceProvider* GetRemoteNavigationAssociatedInterfaces() |
| 580 | override; |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 581 | blink::WebLocalFrame* CreateChildFrame( |
alexmos | e48b1df93 | 2015-01-16 01:34:17 | [diff] [blame] | 582 | blink::WebLocalFrame* parent, |
Antonio Gomes | 9d5c1ef | 2020-04-30 20:56:41 | [diff] [blame] | 583 | blink::mojom::TreeScopeType scope, |
dcheng | 860817a | 2015-05-22 03:16:56 | [diff] [blame] | 584 | const blink::WebString& name, |
Daniel Cheng | 999698bd | 2017-03-22 04:56:37 | [diff] [blame] | 585 | const blink::WebString& fallback_name, |
Ehsan Karamad | 2b53d15 | 2019-04-08 13:11:21 | [diff] [blame] | 586 | const blink::FramePolicy& frame_policy, |
Ehsan Karamad | 192a8da | 2018-10-21 03:48:08 | [diff] [blame] | 587 | const blink::WebFrameOwnerProperties& frame_owner_properties, |
Antonio Sartori | a1fd143 | 2020-11-25 09:10:20 | [diff] [blame] | 588 | blink::mojom::FrameOwnerElementType frame_owner_element_type, |
| 589 | blink::CrossVariantMojoAssociatedReceiver< |
| 590 | blink::mojom::PolicyContainerHostInterfaceBase> |
| 591 | policy_container_host_receiver) override; |
Adithya Srinivasan | ea4760c | 2020-07-30 15:44:57 | [diff] [blame] | 592 | std::pair<blink::WebRemoteFrame*, blink::PortalToken> CreatePortal( |
Daniel Cheng | 9a7c6c8 | 2020-04-25 04:58:17 | [diff] [blame] | 593 | blink::CrossVariantMojoAssociatedReceiver< |
| 594 | blink::mojom::PortalInterfaceBase> portal_endpoint, |
| 595 | blink::CrossVariantMojoAssociatedRemote< |
| 596 | blink::mojom::PortalClientInterfaceBase> client_endpoint, |
Jeremy Roman | 62fee22 | 2019-07-09 17:34:14 | [diff] [blame] | 597 | const blink::WebElement& portal_element) override; |
Lucas Furukawa Gadani | 56dd545 | 2019-03-22 18:23:12 | [diff] [blame] | 598 | blink::WebRemoteFrame* AdoptPortal( |
Adithya Srinivasan | ea4760c | 2020-07-30 15:44:57 | [diff] [blame] | 599 | const blink::PortalToken& portal_token, |
Jeremy Roman | 62fee22 | 2019-07-09 17:34:14 | [diff] [blame] | 600 | const blink::WebElement& portal_element) override; |
Lukasz Anforowicz | af2f3357 | 2018-01-17 14:05:08 | [diff] [blame] | 601 | blink::WebFrame* FindFrame(const blink::WebString& name) override; |
Miyoung Shin | 00b4825 | 2020-07-27 04:03:20 | [diff] [blame] | 602 | void WillDetach() override; |
| 603 | void FrameDetached() override; |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 604 | void DidChangeName(const blink::WebString& name) override; |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 605 | void DidMatchCSS( |
[email protected] | 180ef24 | 2013-11-07 06:50:46 | [diff] [blame] | 606 | const blink::WebVector<blink::WebString>& newly_matching_selectors, |
avi | 5c77d21 | 2015-09-25 20:08:25 | [diff] [blame] | 607 | const blink::WebVector<blink::WebString>& stopped_matching_selectors) |
| 608 | override; |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 609 | bool ShouldReportDetailedMessageForSource( |
avi | 5c77d21 | 2015-09-25 20:08:25 | [diff] [blame] | 610 | const blink::WebString& source) override; |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 611 | void DidAddMessageToConsole(const blink::WebConsoleMessage& message, |
avi | 5c77d21 | 2015-09-25 20:08:25 | [diff] [blame] | 612 | const blink::WebString& source_name, |
| 613 | unsigned source_line, |
| 614 | const blink::WebString& stack_trace) override; |
Dmitry Gozman | 7b10a53 | 2018-11-13 17:48:56 | [diff] [blame] | 615 | void BeginNavigation(std::unique_ptr<blink::WebNavigationInfo> info) override; |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 616 | void WillSendSubmitEvent(const blink::WebFormElement& form) override; |
Takeshi Yoshino | 41b671a | 2017-08-01 12:17:51 | [diff] [blame] | 617 | void DidCreateDocumentLoader( |
Takeshi Yoshino | 41b671a | 2017-08-01 12:17:51 | [diff] [blame] | 618 | blink::WebDocumentLoader* document_loader) override; |
arthursonzogni | 76098e5 | 2020-11-25 14:18:45 | [diff] [blame] | 619 | void DidCommitNavigation( |
| 620 | blink::WebHistoryCommitType commit_type, |
| 621 | bool should_reset_browser_interface_broker, |
| 622 | network::mojom::WebSandboxFlags sandbox_flags, |
| 623 | const blink::ParsedFeaturePolicy& feature_policy_header, |
| 624 | const blink::DocumentPolicyFeatureState& document_policy_header) override; |
Dmitry Gozman | f0c8e087 | 2020-02-11 09:57:28 | [diff] [blame] | 625 | void DidCreateInitialEmptyDocument() override; |
Nate Chapin | 950d75e | 2020-04-20 18:11:23 | [diff] [blame] | 626 | void DidCommitDocumentReplacementNavigation( |
Dmitry Gozman | f0c8e087 | 2020-02-11 09:57:28 | [diff] [blame] | 627 | blink::WebDocumentLoader* document_loader) override; |
sashab | e40dfa1b | 2017-04-24 02:12:55 | [diff] [blame] | 628 | void DidClearWindowObject() override; |
Daniel Cheng | 7df23c2 | 2017-08-03 18:43:58 | [diff] [blame] | 629 | void DidCreateDocumentElement() override; |
| 630 | void RunScriptsAtDocumentElementAvailable() override; |
Julie Jeongeun Kim | ec6178a | 2020-02-19 03:28:33 | [diff] [blame] | 631 | void DidReceiveTitle(const blink::WebString& title) override; |
sashab | 3730c8a | 2017-05-03 01:28:54 | [diff] [blame] | 632 | void DidFinishDocumentLoad() override; |
Rakina Zata Amni | ba3eecb | 2020-11-02 10:12:28 | [diff] [blame] | 633 | void RunScriptsAtDocumentReady() override; |
sashab | e6866222 | 2017-04-11 03:28:55 | [diff] [blame] | 634 | void RunScriptsAtDocumentIdle() override; |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 635 | void DidHandleOnloadEvents() override; |
sashab | 0bdd956a | 2017-04-18 09:27:06 | [diff] [blame] | 636 | void DidFinishLoad() override; |
Miyoung Shin | 6acc5d5 | 2020-11-22 04:10:38 | [diff] [blame] | 637 | void DidFinishSameDocumentNavigation(blink::WebHistoryCommitType commit_type, |
Eugene But | 0579ec8 | 2018-05-22 17:18:17 | [diff] [blame] | 638 | bool content_initiated) override; |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 639 | void DidUpdateCurrentHistoryItem() override; |
Dmitry Gozman | f12caab | 2018-02-07 03:45:58 | [diff] [blame] | 640 | base::UnguessableToken GetDevToolsFrameToken() override; |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 641 | void AbortClientNavigation() override; |
| 642 | void DidChangeSelection(bool is_empty_selection) override; |
Gyuyoung Kim | 49f314f2 | 2020-07-04 04:00:28 | [diff] [blame] | 643 | void ShowContextMenu( |
| 644 | const blink::WebContextMenuData& data, |
| 645 | const base::Optional<gfx::Point>& host_context_menu_location) override; |
Lucas Furukawa Gadani | e5d27a36 | 2018-02-13 14:26:02 | [diff] [blame] | 646 | void FrameRectsChanged(const blink::WebRect& frame_rect) override; |
Miyoung Shin | bcd140070 | 2020-03-13 00:35:18 | [diff] [blame] | 647 | void FocusedElementChanged(const blink::WebElement& element) override; |
Justin Miron | 95fddee | 2020-07-10 16:46:37 | [diff] [blame] | 648 | void OnMainFrameIntersectionChanged( |
Justin Miron | c3452f9 | 2020-01-24 14:31:09 | [diff] [blame] | 649 | const blink::WebRect& intersect_rect) override; |
Yutaka Hirano | 9854988 | 2020-08-06 08:43:33 | [diff] [blame] | 650 | void WillSendRequest(blink::WebURLRequest& request, |
| 651 | ForRedirect for_redirect) override; |
Yao Xiao | 8bf7158 | 2020-12-01 00:01:48 | [diff] [blame^] | 652 | void OnOverlayPopupAdDetected() override; |
| 653 | void OnLargeStickyAdDetected() override; |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 654 | void DidLoadResourceFromMemoryCache( |
[email protected] | 180ef24 | 2013-11-07 06:50:46 | [diff] [blame] | 655 | const blink::WebURLRequest& request, |
avi | 5c77d21 | 2015-09-25 20:08:25 | [diff] [blame] | 656 | const blink::WebURLResponse& response) override; |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 657 | void DidChangePerformanceTiming() override; |
Hongbo Song | 104cef1 | 2020-03-26 21:57:07 | [diff] [blame] | 658 | void DidObserveInputDelay(base::TimeDelta input_delay) override; |
Eric Robinson | fb3cb75 | 2019-03-04 13:55:50 | [diff] [blame] | 659 | void DidChangeCpuTiming(base::TimeDelta time) override; |
Sergio Villar Senin | 0c142fa | 2019-10-16 08:18:59 | [diff] [blame] | 660 | void DidObserveLoadingBehavior(blink::LoadingBehaviorFlag behavior) override; |
Luna Lu | 7b133f7 | 2017-07-27 16:16:47 | [diff] [blame] | 661 | void DidObserveNewFeatureUsage(blink::mojom::WebFeature feature) override; |
Majid Valipour | b9ee097 | 2019-08-22 15:16:23 | [diff] [blame] | 662 | void DidObserveNewCssPropertyUsage(blink::mojom::CSSSampleId css_property, |
Luna Lu | 29d922d | 2018-03-27 18:06:51 | [diff] [blame] | 663 | bool is_animated) override; |
Steve Kobes | 7e75d52 | 2019-07-11 12:18:42 | [diff] [blame] | 664 | void DidObserveLayoutShift(double score, bool after_input_or_scroll) override; |
Kent Tamura | abc1e56a | 2020-05-07 02:03:58 | [diff] [blame] | 665 | void DidObserveLayoutNg(uint32_t all_block_count, |
| 666 | uint32_t ng_block_count, |
| 667 | uint32_t all_call_count, |
| 668 | uint32_t ng_call_count) override; |
Ryan Sturm | 4f61ea49 | 2019-04-03 23:44:27 | [diff] [blame] | 669 | void DidObserveLazyLoadBehavior( |
| 670 | blink::WebLocalFrameClient::LazyLoadBehavior lazy_load_behavior) override; |
sashab | 7dbeb11 | 2017-05-02 23:13:22 | [diff] [blame] | 671 | void DidCreateScriptContext(v8::Local<v8::Context> context, |
avi | 5c77d21 | 2015-09-25 20:08:25 | [diff] [blame] | 672 | int world_id) override; |
sashab | 9e289b3 | 2017-04-26 07:07:10 | [diff] [blame] | 673 | void WillReleaseScriptContext(v8::Local<v8::Context> context, |
avi | 5c77d21 | 2015-09-25 20:08:25 | [diff] [blame] | 674 | int world_id) override; |
sashab | ef13f14a | 2017-04-26 03:57:26 | [diff] [blame] | 675 | void DidChangeScrollOffset() override; |
Antonio Gomes | 32f24faf | 2019-08-18 16:41:36 | [diff] [blame] | 676 | blink::WebMediaStreamDeviceObserver* MediaStreamDeviceObserver() override; |
Guido Urdaneta | 7f9f9df | 2020-09-29 15:19:17 | [diff] [blame] | 677 | bool AllowRTCLegacyTLSProtocols() override; |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 678 | blink::WebEncryptedMediaClient* EncryptedMediaClient() override; |
| 679 | blink::WebString UserAgentOverride() override; |
Maks Orlovich | 73f374d | 2020-04-02 12:46:13 | [diff] [blame] | 680 | base::Optional<blink::UserAgentMetadata> UserAgentMetadataOverride() override; |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 681 | blink::WebString DoNotTrackValue() override; |
Guido Urdaneta | 3a7cd9e6 | 2020-07-21 08:31:28 | [diff] [blame] | 682 | blink::mojom::RendererAudioInputStreamFactory* GetAudioInputStreamFactory(); |
meacer | ba52f5620 | 2017-04-22 00:08:08 | [diff] [blame] | 683 | bool AllowContentInitiatedDataUrlNavigations( |
| 684 | const blink::WebURL& url) override; |
Nektarios Paisios | 56ee998 | 2020-04-22 07:53:06 | [diff] [blame] | 685 | void PostAccessibilityEvent(const ui::AXEvent& event) override; |
Dominic Mazzoni | bb51278 | 2018-09-13 16:16:06 | [diff] [blame] | 686 | void MarkWebAXObjectDirty(const blink::WebAXObject& obj, |
| 687 | bool subtree) override; |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 688 | void CheckIfAudioSinkExistsAndIsAuthorized( |
guidou | 3906a72 | 2015-11-12 22:14:42 | [diff] [blame] | 689 | const blink::WebString& sink_id, |
Antonio Gomes | e7813f3 | 2019-04-02 06:11:03 | [diff] [blame] | 690 | blink::WebSetSinkIdCompleteCallback callback) override; |
Kinuko Yasuda | 017b79e6 | 2017-10-24 17:46:10 | [diff] [blame] | 691 | std::unique_ptr<blink::WebURLLoaderFactory> CreateURLLoaderFactory() override; |
Mario Sanchez Prada | 70fb3b3 | 2020-04-30 20:27:39 | [diff] [blame] | 692 | void OnStopLoading() override; |
Tsuyoshi Horo | d7d7da83 | 2020-09-14 11:26:26 | [diff] [blame] | 693 | void MaybeProxyURLLoaderFactory( |
| 694 | blink::CrossVariantMojoReceiver< |
| 695 | network::mojom::URLLoaderFactoryInterfaceBase>* factory_receiver) |
| 696 | override; |
lukasza | 060c739be | 2017-06-13 23:09:27 | [diff] [blame] | 697 | void DraggableRegionsChanged() override; |
Olga Sharonova | e03b9069 | 2019-09-05 09:06:58 | [diff] [blame] | 698 | blink::BrowserInterfaceBrokerProxy* GetBrowserInterfaceBroker() override; |
Dave Tapuska | 23748d4 | 2020-06-26 16:01:20 | [diff] [blame] | 699 | // Dispatches the current state of selection on the webpage to the browser if |
| 700 | // it has changed. |
| 701 | // TODO(varunjain): delete this method once we figure out how to keep |
| 702 | // selection handles in sync with the webpage. |
| 703 | void SyncSelectionIfRequired() override; |
| 704 | void ScrollFocusedEditableElementIntoRect(const gfx::Rect& rect) override; |
| 705 | void ResetHasScrolledFocusedEditableIntoView() override; |
Antonio Gomes | 98bfb18 | 2020-09-03 13:36:49 | [diff] [blame] | 706 | void CreateAudioInputStream( |
| 707 | blink::CrossVariantMojoRemote< |
| 708 | blink::mojom::RendererAudioInputStreamFactoryClientInterfaceBase> |
| 709 | client, |
| 710 | const base::UnguessableToken& session_id, |
| 711 | const media::AudioParameters& params, |
| 712 | bool automatic_gain_control, |
| 713 | uint32_t shared_memory_count) override; |
| 714 | void AssociateInputAndOutputForAec( |
| 715 | const base::UnguessableToken& input_stream_id, |
| 716 | const std::string& output_device_id) override; |
Dave Tapuska | 064cb5e | 2020-09-15 17:43:27 | [diff] [blame] | 717 | void DidMeaningfulLayout(blink::WebMeaningfulLayout layout_type) override; |
Dave Tapuska | 1538552 | 2020-09-15 20:03:15 | [diff] [blame] | 718 | void DidCommitAndDrawCompositorFrame() override; |
Miyoung Shin | f264e2a | 2020-09-17 08:21:43 | [diff] [blame] | 719 | void WasHidden() override; |
| 720 | void WasShown() override; |
Hiroki Kumazaki | 2560dd8 | 2020-10-29 09:25:59 | [diff] [blame] | 721 | void DidChangeMobileFriendliness(const blink::MobileFriendliness&) override; |
| 722 | |
Sadrul Habib Chowdhury | 403923e | 2020-10-01 09:53:16 | [diff] [blame] | 723 | void SetUpSharedMemoryForSmoothness( |
Dave Tapuska | 32e57d4 | 2020-10-27 20:07:31 | [diff] [blame] | 724 | base::ReadOnlySharedMemoryRegion shared_memory) override; |
Dave Tapuska | 39305ff | 2020-10-28 22:54:13 | [diff] [blame] | 725 | blink::WebURL LastCommittedUrlForUKM() override; |
Sadrul Habib Chowdhury | 403923e | 2020-10-01 09:53:16 | [diff] [blame] | 726 | |
Adam Parker | 6a19ba34 | 2018-01-08 23:40:20 | [diff] [blame] | 727 | // Binds to the fullscreen service in the browser. |
| 728 | void BindFullscreen( |
Mario Sanchez Prada | b3b852f | 2019-10-04 17:53:24 | [diff] [blame] | 729 | mojo::PendingAssociatedReceiver<mojom::FullscreenVideoElementHandler> |
| 730 | receiver); |
Adam Parker | 6a19ba34 | 2018-01-08 23:40:20 | [diff] [blame] | 731 | |
Mark Lieu | 6cf3e8fa | 2019-03-09 02:09:01 | [diff] [blame] | 732 | // Binds to the MHTML file generation service in the browser. |
Mario Sanchez Prada | b3b852f | 2019-10-04 17:53:24 | [diff] [blame] | 733 | void BindMhtmlFileWriter( |
| 734 | mojo::PendingAssociatedReceiver<mojom::MhtmlFileWriter> receiver); |
Mark Lieu | 6cf3e8fa | 2019-03-09 02:09:01 | [diff] [blame] | 735 | |
Becca Hughes | 3da69b74 | 2018-04-13 19:05:06 | [diff] [blame] | 736 | // Binds to the autoplay configuration service in the browser. |
| 737 | void BindAutoplayConfiguration( |
Mario Sanchez Prada | b3b852f | 2019-10-04 17:53:24 | [diff] [blame] | 738 | mojo::PendingAssociatedReceiver<blink::mojom::AutoplayConfigurationClient> |
| 739 | receiver); |
Becca Hughes | 9470c45 | 2017-07-27 22:51:05 | [diff] [blame] | 740 | |
ben | 76f52b24 | 2016-06-18 05:42:48 | [diff] [blame] | 741 | // Binds to the FrameHost in the browser. |
Ken Rockot | 13051c93 | 2019-11-14 20:11:51 | [diff] [blame] | 742 | void BindFrame(mojo::PendingReceiver<mojom::Frame> receiver); |
csharrison | 95f01e92 | 2017-04-24 18:52:35 | [diff] [blame] | 743 | |
Balazs Engedy | a40712f | 2017-09-15 15:01:11 | [diff] [blame] | 744 | // Virtual so that a TestRenderFrame can mock out the interface. |
| 745 | virtual mojom::FrameHost* GetFrameHost(); |
rockot | f8fdd9b | 2015-12-16 22:22:35 | [diff] [blame] | 746 | |
sammc | 7f6c6a0 | 2017-01-30 00:53:51 | [diff] [blame] | 747 | void BindFrameBindingsControl( |
Henrique Ferreiro | 3a9751c | 2019-09-30 13:54:07 | [diff] [blame] | 748 | mojo::PendingAssociatedReceiver<mojom::FrameBindingsControl> receiver); |
Ken Rockot | 4878545 | 2017-10-25 19:33:14 | [diff] [blame] | 749 | void BindFrameNavigationControl( |
Shimi Zhang | bb73807 | 2019-07-09 18:54:40 | [diff] [blame] | 750 | mojo::PendingAssociatedReceiver<mojom::FrameNavigationControl> receiver); |
Arthur Hemery | d3011f6 | 2018-05-30 10:38:44 | [diff] [blame] | 751 | // Only used when PerNavigationMojoInterface is enabled. |
Julie Jeongeun Kim | ed2e5ba7 | 2019-09-12 10:14:17 | [diff] [blame] | 752 | void BindNavigationClient( |
| 753 | mojo::PendingAssociatedReceiver<mojom::NavigationClient> receiver); |
sammc | 7f6c6a0 | 2017-01-30 00:53:51 | [diff] [blame] | 754 | |
xhwang | 5206d4e6 | 2016-02-05 02:09:55 | [diff] [blame] | 755 | media::MediaPermission* GetMediaPermission(); |
guoweis | f4282b0 | 2015-09-24 23:05:22 | [diff] [blame] | 756 | |
creis | 69b184a47 | 2015-11-26 05:29:51 | [diff] [blame] | 757 | // Sends the current frame's navigation state to the browser. |
| 758 | void SendUpdateState(); |
| 759 | |
sammc | e2f9998 | 2016-03-14 22:38:12 | [diff] [blame] | 760 | // Creates a MojoBindingsController if Mojo bindings have been enabled for |
| 761 | // this frame. For WebUI, this allows the page to communicate with the browser |
| 762 | // process; for layout tests, this allows the test to mock out services at |
| 763 | // the Mojo IPC layer. |
| 764 | void MaybeEnableMojoBindings(); |
Kent Tamura | 647f1a50 | 2018-08-01 10:24:08 | [diff] [blame] | 765 | |
Dmitry Gozman | 3682f76 | 2019-09-16 23:19:59 | [diff] [blame] | 766 | void NotifyObserversOfFailedProvisionalLoad(); |
Lucas Garron | a15d3fc | 2017-11-02 02:48:18 | [diff] [blame] | 767 | |
lfg | e0c2792ec | 2016-05-11 18:52:08 | [diff] [blame] | 768 | // Plugin-related functions -------------------------------------------------- |
| 769 | |
brettw | 4b46108 | 2016-11-19 18:55:16 | [diff] [blame] | 770 | #if BUILDFLAG(ENABLE_PLUGINS) |
lfg | e0c2792ec | 2016-05-11 18:52:08 | [diff] [blame] | 771 | PepperPluginInstanceImpl* focused_pepper_plugin() { |
| 772 | return focused_pepper_plugin_; |
| 773 | } |
lfg | e0c2792ec | 2016-05-11 18:52:08 | [diff] [blame] | 774 | // Indicates that the given instance has been created. |
| 775 | void PepperInstanceCreated(PepperPluginInstanceImpl* instance); |
| 776 | |
| 777 | // Indicates that the given instance is being destroyed. This is called from |
| 778 | // the destructor, so it's important that the instance is not dereferenced |
| 779 | // from this call. |
| 780 | void PepperInstanceDeleted(PepperPluginInstanceImpl* instance); |
| 781 | |
| 782 | // Notification that the given plugin is focused or unfocused. |
| 783 | void PepperFocusChanged(PepperPluginInstanceImpl* instance, bool focused); |
zqzhang | c885f6b | 2016-06-23 19:44:46 | [diff] [blame] | 784 | |
| 785 | void PepperStartsPlayback(PepperPluginInstanceImpl* instance); |
| 786 | void PepperStopsPlayback(PepperPluginInstanceImpl* instance); |
| 787 | void OnSetPepperVolume(int32_t pp_instance, double volume); |
lfg | e0c2792ec | 2016-05-11 18:52:08 | [diff] [blame] | 788 | #endif // ENABLE_PLUGINS |
| 789 | |
Mario Sanchez Prada | 0bd8b8c | 2020-10-21 17:49:23 | [diff] [blame] | 790 | const blink::RendererPreferences& GetRendererPreferences() const; |
chcunningham | 86f025e3 | 2017-05-30 20:43:23 | [diff] [blame] | 791 | |
Arthur Hemery | d3011f6 | 2018-05-30 10:38:44 | [diff] [blame] | 792 | // Called when an ongoing renderer-initiated navigation was dropped by the |
| 793 | // browser. |
| 794 | void OnDroppedNavigation(); |
| 795 | |
Lukasz Anforowicz | d334bba | 2020-02-10 23:32:55 | [diff] [blame] | 796 | void DidStartResponse(const GURL& response_url, |
rajendrant | 811e357 | 2018-11-05 23:18:55 | [diff] [blame] | 797 | int request_id, |
Lucas Furukawa Gadani | a6917ab | 2019-10-01 17:37:31 | [diff] [blame] | 798 | network::mojom::URLResponseHeadPtr response_head, |
Kinuko Yasuda | 433f710a | 2020-02-14 02:11:58 | [diff] [blame] | 799 | network::mojom::RequestDestination request_destination, |
Hiroki Nakagawa | 4136615 | 2020-07-27 18:31:40 | [diff] [blame] | 800 | blink::PreviewsState previews_state); |
rajendrant | 2e83a10 | 2018-06-19 05:58:02 | [diff] [blame] | 801 | void DidCompleteResponse(int request_id, |
| 802 | const network::URLLoaderCompletionStatus& status); |
| 803 | void DidCancelResponse(int request_id); |
| 804 | void DidReceiveTransferSizeUpdate(int request_id, int received_data_length); |
| 805 | |
Julie Jeongeun Kim | f4363929 | 2020-05-05 05:33:01 | [diff] [blame] | 806 | bool GetCaretBoundsFromFocusedPlugin(gfx::Rect& rect) override; |
| 807 | |
Vladimir Levin | b41bfe4 | 2019-07-16 21:13:44 | [diff] [blame] | 808 | // Used in tests to install a fake WebURLLoaderFactory via |
| 809 | // RenderViewTest::CreateFakeWebURLLoaderFactory(). |
| 810 | void SetWebURLLoaderFactoryOverrideForTest( |
Vladimir Levin | cfca852 | 2019-07-30 19:01:21 | [diff] [blame] | 811 | std::unique_ptr<blink::WebURLLoaderFactoryForTest> factory); |
Vladimir Levin | b41bfe4 | 2019-07-16 21:13:44 | [diff] [blame] | 812 | |
Minoru Chikamune | e9eb7f9 | 2020-10-26 04:15:16 | [diff] [blame] | 813 | blink::scheduler::WebAgentGroupScheduler& GetAgentGroupScheduler() override; |
| 814 | |
[email protected] | 2f61bdd | 2013-07-02 18:38:47 | [diff] [blame] | 815 | protected: |
Balazs Engedy | ba034e7 | 2017-10-27 22:26:28 | [diff] [blame] | 816 | explicit RenderFrameImpl(CreateParams params); |
[email protected] | 2f61bdd | 2013-07-02 18:38:47 | [diff] [blame] | 817 | |
danakj | c9acb113 | 2019-03-28 19:10:05 | [diff] [blame] | 818 | bool IsLocalRoot() const; |
| 819 | const RenderFrameImpl* GetLocalRoot() const; |
| 820 | |
danakj | 654897c | 2020-05-29 22:36:17 | [diff] [blame] | 821 | // Gets the unique_name() of the frame being replaced by this frame, when |
| 822 | // it is a provisional frame. Invalid to call on frames that are already |
| 823 | // attached to the frame tree. |
Anders Hartvoll Ruud | 4bb45c6 | 2020-07-10 17:10:55 | [diff] [blame] | 824 | std::string GetPreviousFrameUniqueName(); |
danakj | 654897c | 2020-05-29 22:36:17 | [diff] [blame] | 825 | |
[email protected] | 227692c5 | 2013-05-31 22:43:04 | [diff] [blame] | 826 | private: |
kenrb | f98a4d2 | 2015-04-01 21:59:35 | [diff] [blame] | 827 | friend class RenderFrameImplTest; |
[email protected] | 2e2d963 | 2013-12-03 00:55:26 | [diff] [blame] | 828 | friend class RenderFrameObserver; |
clamy | 98a9dee0 | 2015-06-24 16:09:10 | [diff] [blame] | 829 | friend class TestRenderFrame; |
Kinuko Yasuda | f6e87a4 | 2018-12-21 08:15:27 | [diff] [blame] | 830 | |
dmazzoni | 8e6fe4d | 2016-06-27 06:35:37 | [diff] [blame] | 831 | FRIEND_TEST_ALL_PREFIXES(RenderAccessibilityImplTest, |
[email protected] | 66bbadaf | 2014-03-28 16:25:54 | [diff] [blame] | 832 | AccessibilityMessagesQueueWhileSwappedOut); |
Ken Buchanan | c398e28 | 2017-11-29 19:28:57 | [diff] [blame] | 833 | FRIEND_TEST_ALL_PREFIXES(RenderFrameImplTest, LocalChildFrameWasShown); |
scottmg | 276753cf | 2016-10-27 18:25:22 | [diff] [blame] | 834 | FRIEND_TEST_ALL_PREFIXES(RenderFrameImplTest, ZoomLimit); |
liberato | a8da3b5 | 2017-05-02 20:23:51 | [diff] [blame] | 835 | FRIEND_TEST_ALL_PREFIXES(RenderFrameImplTest, |
| 836 | TestOverlayRoutingTokenSendsLater); |
| 837 | FRIEND_TEST_ALL_PREFIXES(RenderFrameImplTest, |
| 838 | TestOverlayRoutingTokenSendsNow); |
[email protected] | 2e2d963 | 2013-12-03 00:55:26 | [diff] [blame] | 839 | |
twellington | 376424ad | 2015-05-04 18:57:25 | [diff] [blame] | 840 | // A wrapper class used as the callback for JavaScript executed |
| 841 | // in an isolated world. |
| 842 | class JavaScriptIsolatedWorldRequest |
| 843 | : public blink::WebScriptExecutionCallback { |
| 844 | public: |
| 845 | JavaScriptIsolatedWorldRequest( |
Avi Drissman | 4544828f | 2019-03-11 20:37:32 | [diff] [blame] | 846 | base::WeakPtr<RenderFrameImpl> render_frame_impl, |
Avi Drissman | 8e3ebe9 | 2019-06-10 20:26:11 | [diff] [blame] | 847 | bool wants_result, |
Avi Drissman | 4544828f | 2019-03-11 20:37:32 | [diff] [blame] | 848 | JavaScriptExecuteRequestInIsolatedWorldCallback callback); |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 849 | void Completed( |
twellington | 376424ad | 2015-05-04 18:57:25 | [diff] [blame] | 850 | const blink::WebVector<v8::Local<v8::Value>>& result) override; |
| 851 | |
| 852 | private: |
avi | 5c77d21 | 2015-09-25 20:08:25 | [diff] [blame] | 853 | ~JavaScriptIsolatedWorldRequest() override; |
twellington | 376424ad | 2015-05-04 18:57:25 | [diff] [blame] | 854 | |
twellington | 376424ad | 2015-05-04 18:57:25 | [diff] [blame] | 855 | base::WeakPtr<RenderFrameImpl> render_frame_impl_; |
Avi Drissman | 8e3ebe9 | 2019-06-10 20:26:11 | [diff] [blame] | 856 | bool wants_result_; |
Avi Drissman | 4544828f | 2019-03-11 20:37:32 | [diff] [blame] | 857 | JavaScriptExecuteRequestInIsolatedWorldCallback callback_; |
twellington | 376424ad | 2015-05-04 18:57:25 | [diff] [blame] | 858 | |
| 859 | DISALLOW_COPY_AND_ASSIGN(JavaScriptIsolatedWorldRequest); |
| 860 | }; |
| 861 | |
Daniel Cheng | 46894b7 | 2017-07-19 13:01:25 | [diff] [blame] | 862 | // Similar to base::AutoReset, but skips restoration of the original value if |
| 863 | // |this| is already destroyed. |
| 864 | template <typename T> |
| 865 | class AutoResetMember { |
| 866 | public: |
| 867 | AutoResetMember(RenderFrameImpl* frame, |
| 868 | T RenderFrameImpl::*member, |
| 869 | T new_value) |
| 870 | : weak_frame_(frame->weak_factory_.GetWeakPtr()), |
| 871 | scoped_variable_(&(frame->*member)), |
| 872 | original_value_(*scoped_variable_) { |
| 873 | *scoped_variable_ = new_value; |
| 874 | } |
| 875 | |
| 876 | ~AutoResetMember() { |
| 877 | if (weak_frame_) |
| 878 | *scoped_variable_ = original_value_; |
| 879 | } |
| 880 | |
| 881 | private: |
| 882 | base::WeakPtr<RenderFrameImpl> weak_frame_; |
| 883 | T* scoped_variable_; |
| 884 | T original_value_; |
| 885 | }; |
| 886 | |
Kinuko Yasuda | 017b79e6 | 2017-10-24 17:46:10 | [diff] [blame] | 887 | class FrameURLLoaderFactory; |
| 888 | |
dcheng | c5ef1a5 | 2015-08-26 20:58:30 | [diff] [blame] | 889 | // Creates a new RenderFrame. |render_view| is the RenderView object that this |
Oksana Zhuravlova | 8b88e57 | 2019-01-07 21:54:00 | [diff] [blame] | 890 | // frame belongs to, |interface_provider| is the RenderFrameHost's |
| 891 | // InterfaceProvider through which services are exposed to the RenderFrame, |
Oksana Zhuravlova | 977b4b7 | 2019-11-07 19:21:55 | [diff] [blame] | 892 | // and |browser_interface_broker| is the RenderFrameHost's |
| 893 | // BrowserInterfaceBroker through which services are exposed to the |
Oksana Zhuravlova | 8b88e57 | 2019-01-07 21:54:00 | [diff] [blame] | 894 | // RenderFrame. |
Pavel Feldman | 2523472 | 2017-10-11 02:49:06 | [diff] [blame] | 895 | static RenderFrameImpl* Create( |
Tal Pressman | b011b296 | 2020-09-28 11:22:55 | [diff] [blame] | 896 | AgentSchedulingGroup& agent_scheduling_group, |
Pavel Feldman | 2523472 | 2017-10-11 02:49:06 | [diff] [blame] | 897 | RenderViewImpl* render_view, |
| 898 | int32_t routing_id, |
Gyuyoung Kim | 6c9ce902 | 2019-11-26 05:40:08 | [diff] [blame] | 899 | mojo::PendingRemote<service_manager::mojom::InterfaceProvider> |
| 900 | interface_provider, |
Oksana Zhuravlova | fee097c | 2019-07-26 17:01:30 | [diff] [blame] | 901 | mojo::PendingRemote<blink::mojom::BrowserInterfaceBroker> |
| 902 | browser_interface_broker, |
Pavel Feldman | 2523472 | 2017-10-11 02:49:06 | [diff] [blame] | 903 | const base::UnguessableToken& devtools_frame_token); |
dcheng | c5ef1a5 | 2015-08-26 20:58:30 | [diff] [blame] | 904 | |
[email protected] | 2e2d963 | 2013-12-03 00:55:26 | [diff] [blame] | 905 | // Functions to add and remove observers for this object. |
| 906 | void AddObserver(RenderFrameObserver* observer); |
| 907 | void RemoveObserver(RenderFrameObserver* observer); |
[email protected] | 1c2052f | 2013-08-28 08:24:34 | [diff] [blame] | 908 | |
alexmos | f65a795a | 2017-01-12 22:04:00 | [diff] [blame] | 909 | // Swaps the current frame into the frame tree, replacing the |
Gyuyoung Kim | 11aad0b6 | 2020-04-29 16:00:26 | [diff] [blame] | 910 | // RenderFrameProxy it is associated with. Return value indicates whether |
| 911 | // the swap operation succeeded. This should only be used for provisional |
| 912 | // frames associated with a proxy, while the proxy is still in the frame tree. |
| 913 | // If the associated proxy has been detached before this is called, this |
| 914 | // returns false and aborts the swap. |
| 915 | bool SwapInInternal(); |
alexmos | f65a795a | 2017-01-12 22:04:00 | [diff] [blame] | 916 | |
Albert J. Wong | 7bbf22d | 2018-12-20 00:27:27 | [diff] [blame] | 917 | // Returns the RenderWidget associated with the main frame. |
| 918 | // TODO(ajwong): This method should go away when cross-frame property setting |
| 919 | // events moves into RenderWidget. |
| 920 | RenderWidget* GetMainFrameRenderWidget(); |
| 921 | |
Mario Sanchez Prada | 60a014b7 | 2020-02-20 19:08:06 | [diff] [blame] | 922 | // Checks whether accessibility support for this frame is currently enabled. |
| 923 | bool IsAccessibilityEnabled() const; |
| 924 | |
[email protected] | b70da4c | 2014-01-06 19:57:09 | [diff] [blame] | 925 | // IPC message handlers ------------------------------------------------------ |
| 926 | // |
| 927 | // The documentation for these functions should be in |
| 928 | // content/common/*_messages.h for the message that the function is handling. |
Nasko Oskov | 0f3cbb1 | 2020-01-07 17:52:14 | [diff] [blame] | 929 | void OnUnload(int proxy_routing_id, |
| 930 | bool is_loading, |
Dave Tapuska | 8444938 | 2020-05-01 00:39:04 | [diff] [blame] | 931 | const FrameReplicationState& replicated_frame_state, |
| 932 | const base::UnguessableToken& frame_token); |
danakj | f234243 | 2019-05-15 21:46:09 | [diff] [blame] | 933 | void OnDeleteFrame(FrameDeleteIntention intent); |
[email protected] | a09d53ce | 2014-01-31 00:46:42 | [diff] [blame] | 934 | void OnShowContextMenu(const gfx::Point& location); |
| 935 | void OnContextMenuClosed(const CustomContextMenuContext& custom_context); |
| 936 | void OnCustomContextMenuAction(const CustomContextMenuContext& custom_context, |
| 937 | unsigned action); |
Dave Tapuska | b336b92 | 2017-07-06 19:24:05 | [diff] [blame] | 938 | void OnMoveCaret(const gfx::Point& point); |
| 939 | void OnScrollFocusedEditableNodeIntoRect(const gfx::Rect& rect); |
christiank | aeed986 | 2014-11-05 10:49:14 | [diff] [blame] | 940 | void OnSelectRange(const gfx::Point& base, const gfx::Point& extent); |
avi | 6b8dbb3 | 2016-04-08 18:59:35 | [diff] [blame] | 941 | void OnSuppressFurtherDialogs(); |
haibinlu | c643d33c | 2016-06-03 02:22:34 | [diff] [blame] | 942 | |
Mark Lieu | 6cf3e8fa | 2019-03-09 02:09:01 | [diff] [blame] | 943 | // Callback scheduled from SerializeAsMHTML for when writing serialized |
Mark Lieu | c625be6 | 2019-04-04 22:42:49 | [diff] [blame] | 944 | // MHTML to the handle has been completed in the file thread. |
| 945 | void OnWriteMHTMLComplete( |
Mark Lieu | 6cf3e8fa | 2019-03-09 02:09:01 | [diff] [blame] | 946 | SerializeAsMHTMLCallback callback, |
| 947 | std::unordered_set<std::string> serialized_resources_uri_digests, |
carlosk | 27fa065 | 2016-10-05 23:10:36 | [diff] [blame] | 948 | base::TimeDelta main_thread_use_time, |
Mark Lieu | c48b6cc | 2019-03-13 22:55:57 | [diff] [blame] | 949 | mojom::MhtmlSaveStatus save_status); |
carlosk | 27fa065 | 2016-10-05 23:10:36 | [diff] [blame] | 950 | |
Arthur Hemery | bee4a75 | 2019-05-29 10:50:55 | [diff] [blame] | 951 | // Requests that the browser process navigates to |url|. |
| 952 | void OpenURL(std::unique_ptr<blink::WebNavigationInfo> info); |
[email protected] | a09d53ce | 2014-01-31 00:46:42 | [diff] [blame] | 953 | |
Minggang Wang | 035abc1 | 2020-11-05 03:05:15 | [diff] [blame] | 954 | // Returns a blink::ChildURLLoaderFactoryBundle which can be used to request |
Yuzhu Shen | 0c1715f | 2018-01-27 03:48:50 | [diff] [blame] | 955 | // subresources for this frame. |
| 956 | // For frames with committed navigations, this bundle is created with the |
| 957 | // factories provided by the browser at navigation time. For any other frames |
| 958 | // (i.e. frames on the initial about:blank Document), the bundle returned here |
| 959 | // is lazily cloned from the parent or opener's own bundle. |
Minggang Wang | 035abc1 | 2020-11-05 03:05:15 | [diff] [blame] | 960 | blink::ChildURLLoaderFactoryBundle* GetLoaderFactoryBundle(); |
Yuzhu Shen | 0c1715f | 2018-01-27 03:48:50 | [diff] [blame] | 961 | |
Lukasz Anforowicz | cf7f598e | 2019-08-08 19:05:45 | [diff] [blame] | 962 | // Clones and returns the creator's (parent's or opener's) |
Minggang Wang | 035abc1 | 2020-11-05 03:05:15 | [diff] [blame] | 963 | // blink::ChildURLLoaderFactoryBundle. |
| 964 | scoped_refptr<blink::ChildURLLoaderFactoryBundle> |
Lukasz Anforowicz | cf7f598e | 2019-08-08 19:05:45 | [diff] [blame] | 965 | GetLoaderFactoryBundleFromCreator(); |
| 966 | |
Lukasz Anforowicz | 18160d1a8 | 2020-08-04 16:09:22 | [diff] [blame] | 967 | // Returns a mostly empty bundle, with a fallback that uses a process-wide, |
| 968 | // direct-network factory. |
| 969 | // |
Lukasz Anforowicz | b5eba58 | 2020-08-13 02:28:42 | [diff] [blame] | 970 | // TODO(lukasza): https://crbug.com/1114822: Remove once the fallback is no |
Lukasz Anforowicz | 18160d1a8 | 2020-08-04 16:09:22 | [diff] [blame] | 971 | // longer needed. |
Minggang Wang | 035abc1 | 2020-11-05 03:05:15 | [diff] [blame] | 972 | scoped_refptr<blink::ChildURLLoaderFactoryBundle> |
| 973 | GetLoaderFactoryBundleFallback(); |
Lukasz Anforowicz | 18160d1a8 | 2020-08-04 16:09:22 | [diff] [blame] | 974 | |
Minggang Wang | 035abc1 | 2020-11-05 03:05:15 | [diff] [blame] | 975 | scoped_refptr<blink::ChildURLLoaderFactoryBundle> CreateLoaderFactoryBundle( |
Dominic Farolino | bc280d2 | 2019-12-05 05:49:24 | [diff] [blame] | 976 | std::unique_ptr<blink::PendingURLLoaderFactoryBundle> info, |
Hiroki Nakagawa | d7ed213e | 2020-07-21 13:19:28 | [diff] [blame] | 977 | base::Optional<std::vector<blink::mojom::TransferrableURLLoaderPtr>> |
Tsuyoshi Horo | 2cf21db | 2018-10-04 08:01:11 | [diff] [blame] | 978 | subresource_overrides, |
Kinuko Yasuda | 8fb556c | 2019-07-16 05:47:55 | [diff] [blame] | 979 | mojo::PendingRemote<network::mojom::URLLoaderFactory> |
| 980 | prefetch_loader_factory); |
clamy | d698303 | 2015-04-29 14:48:12 | [diff] [blame] | 981 | |
[email protected] | ef3adfc | 2014-05-11 00:04:54 | [diff] [blame] | 982 | // Update current main frame's encoding and send it to browser window. |
| 983 | // Since we want to let users see the right encoding info from menu |
| 984 | // before finishing loading, we call the UpdateEncoding in |
| 985 | // a) function:DidCommitLoadForFrame. When this function is called, |
| 986 | // that means we have got first data. In here we try to get encoding |
| 987 | // of page if it has been specified in http header. |
| 988 | // b) function:DidReceiveTitle. When this function is called, |
| 989 | // that means we have got specified title. Because in most of webpages, |
| 990 | // title tags will follow meta tags. In here we try to get encoding of |
| 991 | // page if it has been specified in meta tag. |
| 992 | // c) function:DidFinishDocumentLoadForFrame. When this function is |
| 993 | // called, that means we have got whole html page. In here we should |
| 994 | // finally get right encoding of page. |
Adithya Srinivasan | 57f44d0d | 2019-03-22 15:36:02 | [diff] [blame] | 995 | void UpdateEncoding(blink::WebFrame* frame, const std::string& encoding_name); |
[email protected] | ef3adfc | 2014-05-11 00:04:54 | [diff] [blame] | 996 | |
Avi Drissman | 4544828f | 2019-03-11 20:37:32 | [diff] [blame] | 997 | base::Value GetJavaScriptExecutionResult(v8::Local<v8::Value> result); |
zeeshanq | 3454e9c | 2014-09-04 21:30:28 | [diff] [blame] | 998 | |
Antonio Gomes | 32f24faf | 2019-08-18 16:41:36 | [diff] [blame] | 999 | void InitializeMediaStreamDeviceObserver(); |
[email protected] | 9630731 | 2014-05-04 01:00:19 | [diff] [blame] | 1000 | |
avi | 5cad491 | 2015-06-19 05:25:44 | [diff] [blame] | 1001 | // Does preparation for the navigation to |url|. |
| 1002 | void PrepareRenderViewForNavigation( |
clamy | da97e832 | 2014-10-07 21:57:25 | [diff] [blame] | 1003 | const GURL& url, |
Lucas Furukawa Gadani | a9c4568 | 2019-07-31 22:05:14 | [diff] [blame] | 1004 | const mojom::CommitNavigationParams& commit_params); |
clamy | da97e832 | 2014-10-07 21:57:25 | [diff] [blame] | 1005 | |
arthursonzogni | 69824eb | 2016-07-13 16:22:03 | [diff] [blame] | 1006 | // Sends a FrameHostMsg_BeginNavigation to the browser |
Arthur Hemery | bee4a75 | 2019-05-29 10:50:55 | [diff] [blame] | 1007 | void BeginNavigationInternal(std::unique_ptr<blink::WebNavigationInfo> info, |
Katie Dillon | eb6c6981 | 2020-07-10 23:29:20 | [diff] [blame] | 1008 | bool is_history_navigation_in_new_child_frame, |
| 1009 | base::TimeTicks renderer_before_unload_start, |
| 1010 | base::TimeTicks renderer_before_unload_end); |
clamy | ece3888 | 2014-11-19 15:00:20 | [diff] [blame] | 1011 | |
arthursonzogni | be9935c | 2019-07-10 16:28:53 | [diff] [blame] | 1012 | // Used to load the initial empty document. This one is special, since it |
| 1013 | // isn't the result of a navigation. |
arthursonzogni | 915ce49 | 2020-11-24 16:48:33 | [diff] [blame] | 1014 | // |
| 1015 | // TODO(arthursonzogni): Consider removing this function. Blink already have a |
| 1016 | // concept of an initial empty document. It has already committed, as part of |
| 1017 | // constructing the blink::LocalFrame. |
| 1018 | // This function in reality commits an empty document a second time! Moreover |
| 1019 | // it isn't considered by blink to be an initial empty document |
| 1020 | // (CommitReason::kRegular, not CommitReason::kInitialization). |
| 1021 | // The purpose of this function is to trigger DidCommitNavigation, even if it |
| 1022 | // isn't associated with a real NavigationRequest. |
| 1023 | // See also: |
| 1024 | // - https://crbug.com/778318 |
| 1025 | // - https://chromium-review.googlesource.com/c/chromium/src/+/804797 |
| 1026 | // - https://github.com/whatwg/html/issues/3267 |
| 1027 | void CommitInitialEmptyDocument( |
| 1028 | std::unique_ptr<blink::WebNavigationInfo> info); |
Nate Chapin | a10f3d55 | 2018-12-17 20:05:26 | [diff] [blame] | 1029 | |
Dmitry Gozman | f5b5c5c | 2019-02-07 00:32:32 | [diff] [blame] | 1030 | // Commit navigation with |navigation_params| prepared. |
| 1031 | void CommitNavigationWithParams( |
Lucas Furukawa Gadani | ef8290a | 2019-07-29 20:27:51 | [diff] [blame] | 1032 | mojom::CommonNavigationParamsPtr common_params, |
Lucas Furukawa Gadani | a9c4568 | 2019-07-31 22:05:14 | [diff] [blame] | 1033 | mojom::CommitNavigationParamsPtr commit_params, |
Dominic Farolino | bc280d2 | 2019-12-05 05:49:24 | [diff] [blame] | 1034 | std::unique_ptr<blink::PendingURLLoaderFactoryBundle> |
Dmitry Gozman | f5b5c5c | 2019-02-07 00:32:32 | [diff] [blame] | 1035 | subresource_loader_factories, |
Hiroki Nakagawa | d7ed213e | 2020-07-21 13:19:28 | [diff] [blame] | 1036 | base::Optional<std::vector<blink::mojom::TransferrableURLLoaderPtr>> |
Dmitry Gozman | f5b5c5c | 2019-02-07 00:32:32 | [diff] [blame] | 1037 | subresource_overrides, |
| 1038 | blink::mojom::ControllerServiceWorkerInfoPtr |
| 1039 | controller_service_worker_info, |
Hiroki Nakagawa | 74cdcf3 | 2020-05-15 04:57:21 | [diff] [blame] | 1040 | blink::mojom::ServiceWorkerContainerInfoForClientPtr container_info, |
Kinuko Yasuda | 8fb556c | 2019-07-16 05:47:55 | [diff] [blame] | 1041 | mojo::PendingRemote<network::mojom::URLLoaderFactory> |
| 1042 | prefetch_loader_factory, |
Dmitry Gozman | f5b5c5c | 2019-02-07 00:32:32 | [diff] [blame] | 1043 | std::unique_ptr<DocumentState> document_state, |
| 1044 | std::unique_ptr<blink::WebNavigationParams> navigation_params); |
| 1045 | |
Dmitry Gozman | 7038dae | 2018-12-05 23:23:33 | [diff] [blame] | 1046 | // Decodes a data url for navigation commit. |
Lucas Furukawa Gadani | ef8290a | 2019-07-29 20:27:51 | [diff] [blame] | 1047 | void DecodeDataURL(const mojom::CommonNavigationParams& common_params, |
Lucas Furukawa Gadani | a9c4568 | 2019-07-31 22:05:14 | [diff] [blame] | 1048 | const mojom::CommitNavigationParams& commit_params, |
Dmitry Gozman | 7038dae | 2018-12-05 23:23:33 | [diff] [blame] | 1049 | std::string* mime_type, |
| 1050 | std::string* charset, |
| 1051 | std::string* data, |
| 1052 | GURL* base_url); |
clamy | 4cc9b820 | 2015-03-02 13:51:36 | [diff] [blame] | 1053 | |
Dmitry Gozman | 710d69b | 2019-10-10 23:18:22 | [diff] [blame] | 1054 | // |transition_type| corresponds to the document which triggered this request. |
Dmitry Gozman | 7335cab | 2019-03-20 03:31:40 | [diff] [blame] | 1055 | void WillSendRequestInternal(blink::WebURLRequest& request, |
Kinuko Yasuda | 881484e7 | 2020-02-08 00:37:05 | [diff] [blame] | 1056 | bool for_main_frame, |
Yutaka Hirano | 9854988 | 2020-08-06 08:43:33 | [diff] [blame] | 1057 | ui::PageTransition transition_type, |
| 1058 | ForRedirect for_redirect); |
Dmitry Gozman | 4604d6e5 | 2019-03-14 03:00:46 | [diff] [blame] | 1059 | |
[email protected] | f3a9531 | 2014-06-12 16:46:58 | [diff] [blame] | 1060 | // Returns the URL being loaded by the |frame_|'s request. |
| 1061 | GURL GetLoadingUrl() const; |
| 1062 | |
ben | 155ecf8 | 2016-06-21 22:43:26 | [diff] [blame] | 1063 | void RegisterMojoInterfaces(); |
halton.huo | ca2eabd | 2015-07-06 08:17:40 | [diff] [blame] | 1064 | |
skyostil | b4cce1b | 2016-03-31 17:56:34 | [diff] [blame] | 1065 | void InitializeBlameContext(RenderFrameImpl* parent_frame); |
| 1066 | |
ben | b932d5a | 2017-04-26 19:40:13 | [diff] [blame] | 1067 | // service_manager::mojom::InterfaceProvider: |
| 1068 | void GetInterface(const std::string& interface_name, |
| 1069 | mojo::ScopedMessagePipeHandle interface_pipe) override; |
| 1070 | |
Gyuyoung Kim | 8870833 | 2020-07-01 03:21:02 | [diff] [blame] | 1071 | // Send |callback| our AndroidOverlay routing token. |
liberato | 2ff93ad | 2017-05-17 07:28:24 | [diff] [blame] | 1072 | void RequestOverlayRoutingToken(media::RoutingTokenCallback callback); |
liberato | a8da3b5 | 2017-05-02 20:23:51 | [diff] [blame] | 1073 | |
Miyoung Shin | 072d405 | 2020-07-13 07:52:44 | [diff] [blame] | 1074 | void BindWebUIReceiver(mojo::PendingReceiver<mojom::WebUI> receiver); |
| 1075 | |
Lukasz Anforowicz | c951368 | 2020-03-11 03:13:26 | [diff] [blame] | 1076 | void ShowDeferredContextMenu(const UntrustworthyContextMenuParams& params); |
Pedro Amaral | 741b117e0 | 2017-08-29 01:21:36 | [diff] [blame] | 1077 | |
arthursonzogni | 73fe321 | 2020-11-17 13:24:07 | [diff] [blame] | 1078 | // Build DidCommitProvisionalLoadParams based on the frame internal state. |
| 1079 | mojom::DidCommitProvisionalLoadParamsPtr MakeDidCommitProvisionalLoadParams( |
ckitagawa | c2e4340 | 2020-01-17 00:09:25 | [diff] [blame] | 1080 | blink::WebHistoryCommitType commit_type, |
| 1081 | ui::PageTransition transition, |
arthursonzogni | 76098e5 | 2020-11-25 14:18:45 | [diff] [blame] | 1082 | network::mojom::WebSandboxFlags sandbox_flags, |
| 1083 | const blink::ParsedFeaturePolicy& feature_policy_header, |
| 1084 | const blink::DocumentPolicyFeatureState& document_policy_header, |
ckitagawa | c2e4340 | 2020-01-17 00:09:25 | [diff] [blame] | 1085 | const base::Optional<base::UnguessableToken>& embedding_token); |
Arthur Hemery | 268be32 | 2018-01-08 17:25:29 | [diff] [blame] | 1086 | |
Arthur Hemery | 2c613fa4 | 2018-01-08 09:36:32 | [diff] [blame] | 1087 | // Updates the navigation history depending on the passed parameters. |
| 1088 | // This could result either in the creation of a new entry or a modification |
| 1089 | // of the current entry or nothing. If a new entry was created, |
| 1090 | // returns true, false otherwise. |
Miyoung Shin | 6acc5d5 | 2020-11-22 04:10:38 | [diff] [blame] | 1091 | void UpdateNavigationHistory(blink::WebHistoryCommitType commit_type); |
Arthur Hemery | 2c613fa4 | 2018-01-08 09:36:32 | [diff] [blame] | 1092 | |
Arthur Hemery | b94d3db | 2018-01-08 12:42:42 | [diff] [blame] | 1093 | // Notify render_view_ observers that a commit happened. |
Dmitry Gozman | 02dd827 | 2020-06-09 20:01:23 | [diff] [blame] | 1094 | void NotifyObserversOfNavigationCommit(ui::PageTransition transition); |
Arthur Hemery | b94d3db | 2018-01-08 12:42:42 | [diff] [blame] | 1095 | |
Arthur Hemery | c23999c | 2018-01-11 19:29:10 | [diff] [blame] | 1096 | // Updates the internal state following a navigation commit. This should be |
| 1097 | // called before notifying the FrameHost of the commit. |
Miyoung Shin | 6acc5d5 | 2020-11-22 04:10:38 | [diff] [blame] | 1098 | void UpdateStateForCommit(blink::WebHistoryCommitType commit_type, |
Dmitry Gozman | 730b21c | 2018-09-19 19:44:25 | [diff] [blame] | 1099 | ui::PageTransition transition); |
Arthur Hemery | c23999c | 2018-01-11 19:29:10 | [diff] [blame] | 1100 | |
Arthur Hemery | 7b0ae49 | 2018-02-05 16:04:45 | [diff] [blame] | 1101 | // Internal function used by same document navigation as well as cross |
| 1102 | // document navigation that updates the state of the RenderFrameImpl and sends |
| 1103 | // a commit message to the browser process. |
| 1104 | void DidCommitNavigationInternal( |
Arthur Hemery | 7b0ae49 | 2018-02-05 16:04:45 | [diff] [blame] | 1105 | blink::WebHistoryCommitType commit_type, |
| 1106 | bool was_within_same_document, |
Dmitry Gozman | 730b21c | 2018-09-19 19:44:25 | [diff] [blame] | 1107 | ui::PageTransition transition, |
arthursonzogni | 76098e5 | 2020-11-25 14:18:45 | [diff] [blame] | 1108 | network::mojom::WebSandboxFlags sandbox_flags, |
| 1109 | const blink::ParsedFeaturePolicy& feature_policy_header, |
| 1110 | const blink::DocumentPolicyFeatureState& document_policy_header, |
ckitagawa | c2e4340 | 2020-01-17 00:09:25 | [diff] [blame] | 1111 | mojom::DidCommitProvisionalLoadInterfaceParamsPtr interface_params, |
| 1112 | const base::Optional<base::UnguessableToken>& embedding_token); |
Arthur Hemery | 7b0ae49 | 2018-02-05 16:04:45 | [diff] [blame] | 1113 | |
Meredith Lane | 4947b2d7 | 2018-01-24 20:54:28 | [diff] [blame] | 1114 | blink::WebComputedAXTree* GetOrCreateWebComputedAXTree() override; |
| 1115 | |
Hiroki Nakagawa | ea68b64 | 2018-04-13 06:24:42 | [diff] [blame] | 1116 | std::unique_ptr<blink::WebSocketHandshakeThrottle> |
| 1117 | CreateWebSocketHandshakeThrottle() override; |
Ehsan Karamad | 466529d | 2019-05-24 03:24:43 | [diff] [blame] | 1118 | bool IsPluginHandledExternally( |
Ehsan Karamad | ed87958 | 2018-08-08 02:02:29 | [diff] [blame] | 1119 | const blink::WebElement& plugin_element, |
| 1120 | const blink::WebURL& url, |
| 1121 | const blink::WebString& suggested_mime_type) override; |
Ehsan Karamad | e70a035 | 2019-02-26 15:39:42 | [diff] [blame] | 1122 | v8::Local<v8::Object> GetScriptableObject( |
| 1123 | const blink::WebElement& plugin_element, |
| 1124 | v8::Isolate* isolate) override; |
Hiroki Nakagawa | ea68b64 | 2018-04-13 06:24:42 | [diff] [blame] | 1125 | |
Julie Jeongeun Kim | f445fc2 | 2019-05-29 12:46:02 | [diff] [blame] | 1126 | void UpdateSubresourceFactory( |
Dominic Farolino | bc280d2 | 2019-12-05 05:49:24 | [diff] [blame] | 1127 | std::unique_ptr<blink::PendingURLLoaderFactoryBundle> info) override; |
Julie Jeongeun Kim | f445fc2 | 2019-05-29 12:46:02 | [diff] [blame] | 1128 | |
clamy | af4bf2d9 | 2018-02-06 10:54:36 | [diff] [blame] | 1129 | // Updates the state of this frame when asked to commit a navigation. |
Lucas Furukawa Gadani | a9c4568 | 2019-07-31 22:05:14 | [diff] [blame] | 1130 | void PrepareFrameForCommit( |
| 1131 | const GURL& url, |
| 1132 | const mojom::CommitNavigationParams& commit_params); |
clamy | af4bf2d9 | 2018-02-06 10:54:36 | [diff] [blame] | 1133 | |
Maks Orlovich | 73f374d | 2020-04-02 12:46:13 | [diff] [blame] | 1134 | // Returns true if UA (and UA client hints) overrides in renderer preferences |
| 1135 | // should be used. |
| 1136 | bool ShouldUseUserAgentOverride() const; |
| 1137 | |
Rakina Zata Amni | 6085813 | 2020-08-19 10:33:48 | [diff] [blame] | 1138 | // Sets the PageLifecycleState and runs pagehide and visibilitychange handlers |
| 1139 | // of the old page before committing this RenderFrame. Should only be called |
| 1140 | // for main-frame same-site navigations where we did a proactive |
| 1141 | // BrowsingInstance swap and we're reusing the old page's process. This is |
| 1142 | // needed to ensure consistency with other same-site main frame navigations. |
| 1143 | // Note that we will set the page's visibility to hidden, but not run the |
| 1144 | // unload handlers of the old page, nor actually unload/freeze the page here. |
| 1145 | // That needs a more complicated support on the browser side which will be |
| 1146 | // implemented later. |
| 1147 | // TODO(crbug.com/1110744): Support unload-in-commit. |
| 1148 | void SetOldPageLifecycleStateFromNewPageCommitIfNeeded( |
| 1149 | const mojom::OldPageInfo* old_page_info); |
| 1150 | |
clamy | af4bf2d9 | 2018-02-06 10:54:36 | [diff] [blame] | 1151 | // Updates the state when asked to commit a history navigation. Sets |
| 1152 | // |item_for_history_navigation| and |load_type| to the appropriate values for |
| 1153 | // commit. |
| 1154 | // |
| 1155 | // The function will also return whether to proceed with the commit of a |
| 1156 | // history navigation or not. This can return false when the state of the |
| 1157 | // history in the browser process goes out of sync with the renderer process. |
| 1158 | // This can happen in the following scenario: |
| 1159 | // * this RenderFrame has a document with URL foo, which does a push state |
| 1160 | // to foo#bar. |
| 1161 | // * the user starts a navigation to foo/bar. |
| 1162 | // * the browser process asks this renderer process to commit the navigation |
| 1163 | // to foo/bar. |
| 1164 | // * the browser process starts a navigation back to foo, which it |
| 1165 | // considers same-document since the navigation to foo/bar hasn't |
| 1166 | // committed yet. It asks the RenderFrame to commit the same-document |
| 1167 | // navigation to foo#bar. |
| 1168 | // * by the time the RenderFrame receives the call to commit the |
| 1169 | // same-document back navigation, the navigation to foo/bar has committed. |
| 1170 | // A back navigation to foo is no longer same-document with the current |
| 1171 | // document of the RenderFrame (foo/bar). Therefore, the navigation cannot |
| 1172 | // be committed as a same-document navigation. |
| 1173 | // When this happens, the navigation will be sent back to the browser process |
| 1174 | // so that it can be performed in cross-document fashion. |
| 1175 | blink::mojom::CommitResult PrepareForHistoryNavigationCommit( |
Lucas Furukawa Gadani | ef8290a | 2019-07-29 20:27:51 | [diff] [blame] | 1176 | const mojom::CommonNavigationParams& common_params, |
Lucas Furukawa Gadani | a9c4568 | 2019-07-31 22:05:14 | [diff] [blame] | 1177 | const mojom::CommitNavigationParams& commit_params, |
clamy | af4bf2d9 | 2018-02-06 10:54:36 | [diff] [blame] | 1178 | blink::WebHistoryItem* item_for_history_navigation, |
| 1179 | blink::WebFrameLoadType* load_type); |
| 1180 | |
Arthur Hemery | b8ead26 | 2019-03-18 12:13:46 | [diff] [blame] | 1181 | // Ignores the navigation commit and stop its processing in the RenderFrame. |
| 1182 | // This will drop the NavigationRequest in the RenderFrameHost. |
| 1183 | // Note: This is only meant to be used before building the DocumentState. |
| 1184 | // Commit abort and navigation end is handled by it afterwards. |
Dmitry Gozman | 9b89000 | 2020-05-27 15:24:42 | [diff] [blame] | 1185 | void AbortCommitNavigation(); |
Arthur Hemery | b8ead26 | 2019-03-18 12:13:46 | [diff] [blame] | 1186 | |
Lily Chen | ee28094 | 2019-06-14 22:31:11 | [diff] [blame] | 1187 | // Implements AddMessageToConsole(). |
| 1188 | void AddMessageToConsoleImpl(blink::mojom::ConsoleMessageLevel level, |
| 1189 | const std::string& message, |
| 1190 | bool discard_duplicates); |
| 1191 | |
creis | cfaa446 | 2015-03-16 19:27:18 | [diff] [blame] | 1192 | // Stores the WebLocalFrame we are associated with. This is null from the |
Daniel Cheng | bd379420 | 2017-06-21 09:30:10 | [diff] [blame] | 1193 | // constructor until BindToFrame() is called, and it is null after |
| 1194 | // FrameDetached() is called until destruction (which is asynchronous in the |
creis | cfaa446 | 2015-03-16 19:27:18 | [diff] [blame] | 1195 | // case of the main frame, but not subframes). |
Dmitry Gozman | d96e493a8 | 2018-11-28 01:13:33 | [diff] [blame] | 1196 | blink::WebNavigationControl* frame_ = nullptr; |
[email protected] | b70da4c | 2014-01-06 19:57:09 | [diff] [blame] | 1197 | |
Tal Pressman | b011b296 | 2020-09-28 11:22:55 | [diff] [blame] | 1198 | // The `AgentSchedulingGroup` this frame is associated with. |
| 1199 | AgentSchedulingGroup& agent_scheduling_group_; |
| 1200 | |
dglazkov | 2e140f5 | 2015-09-28 16:10:07 | [diff] [blame] | 1201 | // Boolean value indicating whether this RenderFrameImpl object is for the |
| 1202 | // main frame or not. It remains accurate during destruction, even when |
| 1203 | // |frame_| has been invalidated. |
| 1204 | bool is_main_frame_; |
nasko | 8b9d9bd | 2015-05-06 19:23:19 | [diff] [blame] | 1205 | |
Miyoung Shin | 3e6393c | 2020-09-18 13:37:20 | [diff] [blame] | 1206 | class UniqueNameFrameAdapter : public blink::UniqueNameHelper::FrameAdapter { |
dcheng | 61b2c922 | 2017-05-25 23:10:11 | [diff] [blame] | 1207 | public: |
| 1208 | explicit UniqueNameFrameAdapter(RenderFrameImpl* render_frame); |
| 1209 | ~UniqueNameFrameAdapter() override; |
| 1210 | |
| 1211 | // FrameAdapter overrides: |
| 1212 | bool IsMainFrame() const override; |
Daniel Cheng | 6ca7f1c9 | 2017-08-09 21:45:41 | [diff] [blame] | 1213 | bool IsCandidateUnique(base::StringPiece name) const override; |
dcheng | 61b2c922 | 2017-05-25 23:10:11 | [diff] [blame] | 1214 | int GetSiblingCount() const override; |
| 1215 | int GetChildCount() const override; |
Anders Hartvoll Ruud | 4bb45c6 | 2020-07-10 17:10:55 | [diff] [blame] | 1216 | std::vector<std::string> CollectAncestorNames( |
dcheng | 61b2c922 | 2017-05-25 23:10:11 | [diff] [blame] | 1217 | BeginPoint begin_point, |
| 1218 | bool (*should_stop)(base::StringPiece)) const override; |
| 1219 | std::vector<int> GetFramePosition(BeginPoint begin_point) const override; |
| 1220 | |
| 1221 | private: |
| 1222 | blink::WebLocalFrame* GetWebFrame() const; |
| 1223 | |
| 1224 | RenderFrameImpl* render_frame_; |
| 1225 | }; |
| 1226 | UniqueNameFrameAdapter unique_name_frame_adapter_; |
Miyoung Shin | 3e6393c | 2020-09-18 13:37:20 | [diff] [blame] | 1227 | blink::UniqueNameHelper unique_name_helper_; |
Daniel Cheng | 999698bd | 2017-03-22 04:56:37 | [diff] [blame] | 1228 | |
nasko | eab5c558 | 2015-12-15 05:20:00 | [diff] [blame] | 1229 | // Indicates whether the frame has been inserted into the frame tree yet or |
| 1230 | // not. |
| 1231 | // |
| 1232 | // When a frame is created by the browser process, it is for a pending |
| 1233 | // navigation. In this case, it is not immediately attached to the frame tree |
| 1234 | // if there is a RenderFrameProxy for the same frame. It is inserted into the |
| 1235 | // frame tree at the time the pending navigation commits. |
| 1236 | // Frames added by the parent document are created from the renderer process |
| 1237 | // and are immediately inserted in the frame tree. |
| 1238 | // TODO(dcheng): Remove this once we have FrameTreeHandle and can use the |
| 1239 | // Blink Web* layer to check for provisional frames. |
| 1240 | bool in_frame_tree_; |
| 1241 | |
wjmaclean | 2a6cab7 | 2016-11-03 18:36:40 | [diff] [blame] | 1242 | RenderViewImpl* render_view_; |
Fergal Daly | c93b735 | 2020-04-07 19:47:43 | [diff] [blame] | 1243 | const int routing_id_; |
nasko | 8b9d9bd | 2015-05-06 19:23:19 | [diff] [blame] | 1244 | |
arthursonzogni | 1efc7b96 | 2019-03-14 09:36:33 | [diff] [blame] | 1245 | // If this RenderFrame was created to replace a previous object, this will |
| 1246 | // store its routing id. The previous object can be: |
| 1247 | // - A RenderFrame. This requires RenderDocument to be enabled. |
| 1248 | // - A RenderFrameProxy. |
| 1249 | // At commit time, the two objects will be swapped and the old one cleared. |
| 1250 | int previous_routing_id_; |
japhet | e6adf14 | 2014-10-31 00:01:49 | [diff] [blame] | 1251 | |
dcheng | 3d886b73 | 2015-11-05 19:16:01 | [diff] [blame] | 1252 | // Non-null when the RenderFrame is a local root for compositing, input, |
| 1253 | // layout, etc. A local frame is also a local root iff it does not have a |
| 1254 | // parent that is a local frame. |
Erik Chen | 3433ee0 | 2019-08-05 20:14:26 | [diff] [blame] | 1255 | RenderWidget* render_widget_ = nullptr; |
| 1256 | |
| 1257 | // If this is a main frame, the RenderView owns the RenderWidget and this |
| 1258 | // member is null. If this is a child frame, then this object owns the |
| 1259 | // RenderWidget and this member is not null. |
| 1260 | std::unique_ptr<RenderWidget> owned_render_widget_; |
kenrb | a719983 | 2015-01-22 23:44:59 | [diff] [blame] | 1261 | |
creis | c8ca51e | 2016-09-29 23:10:28 | [diff] [blame] | 1262 | // Keeps track of which future subframes the browser process has history items |
Charles Reis | 37c9549 | 2016-10-21 20:38:58 | [diff] [blame] | 1263 | // for during a history navigation, as well as whether those items are for |
| 1264 | // about:blank. The renderer process should ask the browser for history items |
| 1265 | // when subframes with these names are created (as long as they are not |
| 1266 | // staying at about:blank), and directly load the initial URLs for any other |
| 1267 | // subframes. |
| 1268 | // |
| 1269 | // This state is incrementally cleared as it is used and then reset in |
| 1270 | // didStopLoading, since it is not needed after the first load completes and |
| 1271 | // is never used after the initial navigation. |
creis | c8ca51e | 2016-09-29 23:10:28 | [diff] [blame] | 1272 | // TODO(creis): Expand this to include any corresponding same-process |
| 1273 | // PageStates for the whole subtree in https://crbug.com/639842. |
Lucas Furukawa Gadani | a9c4568 | 2019-07-31 22:05:14 | [diff] [blame] | 1274 | base::flat_map<std::string, bool> history_subframe_unique_names_; |
creis | 45b3bba | 2016-09-22 22:47:13 | [diff] [blame] | 1275 | |
[email protected] | 2e2d963 | 2013-12-03 00:55:26 | [diff] [blame] | 1276 | // All the registered observers. |
Trent Apted | a250ec3ab | 2018-08-19 08:52:19 | [diff] [blame] | 1277 | base::ObserverList<RenderFrameObserver>::Unchecked observers_; |
[email protected] | 2e2d963 | 2013-12-03 00:55:26 | [diff] [blame] | 1278 | |
[email protected] | a09d53ce | 2014-01-31 00:46:42 | [diff] [blame] | 1279 | // External context menu requests we're waiting for. "Internal" |
| 1280 | // (WebKit-originated) context menu events will have an ID of 0 and will not |
| 1281 | // be in this map. |
| 1282 | // |
| 1283 | // We don't want to add internal ones since some of the "special" page |
| 1284 | // handlers in the browser process just ignore the context menu requests so |
| 1285 | // avoid showing context menus, and so this will cause right clicks to leak |
| 1286 | // entries in this map. Most users of the custom context menu (e.g. Pepper |
| 1287 | // plugins) are normally only on "regular" pages and the regular pages will |
| 1288 | // always respond properly to the request, so we don't have to worry so |
| 1289 | // much about leaks. |
Brett Wilson | f976d3f | 2017-08-18 17:23:39 | [diff] [blame] | 1290 | base::IDMap<ContextMenuClient*> pending_context_menus_; |
[email protected] | a09d53ce | 2014-01-31 00:46:42 | [diff] [blame] | 1291 | |
[email protected] | 4ee6462 | 2014-03-21 22:34:15 | [diff] [blame] | 1292 | // The text selection the last time DidChangeSelection got called. May contain |
| 1293 | // additional characters before and after the selected text, for IMEs. The |
| 1294 | // portion of this string that is the actual selected text starts at index |
| 1295 | // |selection_range_.GetMin() - selection_text_offset_| and has length |
| 1296 | // |selection_range_.length()|. |
| 1297 | base::string16 selection_text_; |
| 1298 | // The offset corresponding to the start of |selection_text_| in the document. |
| 1299 | size_t selection_text_offset_; |
| 1300 | // Range over the document corresponding to the actual selected text (which |
| 1301 | // could correspond to a substring of |selection_text_|; see above). |
| 1302 | gfx::Range selection_range_; |
[email protected] | 4ee6462 | 2014-03-21 22:34:15 | [diff] [blame] | 1303 | |
Guido Urdaneta | d8c24a521 | 2019-08-03 08:35:46 | [diff] [blame] | 1304 | // Implements getUserMedia() and related functionality. |
Antonio Gomes | 32f24faf | 2019-08-18 16:41:36 | [diff] [blame] | 1305 | std::unique_ptr<blink::WebMediaStreamDeviceObserver> |
| 1306 | web_media_stream_device_observer_; |
[email protected] | 9630731 | 2014-05-04 01:00:19 | [diff] [blame] | 1307 | |
Guido Urdaneta | 3a7cd9e6 | 2020-07-21 08:31:28 | [diff] [blame] | 1308 | mojo::Remote<blink::mojom::RendererAudioInputStreamFactory> |
Mario Sanchez Prada | 22694e5a | 2019-09-13 07:16:57 | [diff] [blame] | 1309 | audio_input_stream_factory_; |
Max Morin | 3d464a4 | 2018-01-15 11:17:00 | [diff] [blame] | 1310 | |
xhwang | 6bca21e | 2016-02-06 00:21:45 | [diff] [blame] | 1311 | // The media permission dispatcher attached to this frame. |
dcheng | cedca561 | 2016-04-09 01:40:15 | [diff] [blame] | 1312 | std::unique_ptr<MediaPermissionDispatcher> media_permission_dispatcher_; |
xhwang | 36b1f3b | 2015-01-27 17:54:01 | [diff] [blame] | 1313 | |
Ben Goodger | d5ee3cc | 2017-07-24 23:11:36 | [diff] [blame] | 1314 | service_manager::BinderRegistry registry_; |
Balazs Engedy | ba034e7 | 2017-10-27 22:26:28 | [diff] [blame] | 1315 | service_manager::InterfaceProvider remote_interfaces_; |
sammc | 7f96463 | 2016-10-14 04:16:21 | [diff] [blame] | 1316 | std::unique_ptr<BlinkInterfaceRegistryImpl> blink_interface_registry_; |
[email protected] | c52a141 | 2014-06-25 06:09:25 | [diff] [blame] | 1317 | |
Oksana Zhuravlova | fee097c | 2019-07-26 17:01:30 | [diff] [blame] | 1318 | blink::BrowserInterfaceBrokerProxy browser_interface_broker_proxy_; |
Oksana Zhuravlova | 8b88e57 | 2019-01-07 21:54:00 | [diff] [blame] | 1319 | |
Mario Sanchez Prada | 60a014b7 | 2020-02-20 19:08:06 | [diff] [blame] | 1320 | // Valid during the entire life time of the RenderFrame. |
| 1321 | std::unique_ptr<RenderAccessibilityManager> render_accessibility_manager_; |
[email protected] | 9564021 | 2014-07-26 18:14:30 | [diff] [blame] | 1322 | |
xiaochengh | 01c3b10 | 2016-06-13 23:56:08 | [diff] [blame] | 1323 | std::unique_ptr<FrameBlameContext> blame_context_; |
skyostil | b4cce1b | 2016-03-31 17:56:34 | [diff] [blame] | 1324 | |
Minggang Wang | e0d5db3 | 2020-10-07 15:55:31 | [diff] [blame] | 1325 | std::unique_ptr<blink::WeakWrapperResourceLoadInfoNotifier> |
| 1326 | weak_wrapper_resource_load_info_notifier_; |
| 1327 | |
lfg | e0c2792ec | 2016-05-11 18:52:08 | [diff] [blame] | 1328 | // Plugins ------------------------------------------------------------------- |
brettw | 4b46108 | 2016-11-19 18:55:16 | [diff] [blame] | 1329 | #if BUILDFLAG(ENABLE_PLUGINS) |
lfg | e0c2792ec | 2016-05-11 18:52:08 | [diff] [blame] | 1330 | typedef std::set<PepperPluginInstanceImpl*> PepperPluginSet; |
| 1331 | PepperPluginSet active_pepper_instances_; |
| 1332 | |
| 1333 | // Whether or not the focus is on a PPAPI plugin |
| 1334 | PepperPluginInstanceImpl* focused_pepper_plugin_; |
lfg | e0c2792ec | 2016-05-11 18:52:08 | [diff] [blame] | 1335 | #endif |
| 1336 | |
Becca Hughes | 3da69b74 | 2018-04-13 19:05:06 | [diff] [blame] | 1337 | using AutoplayOriginAndFlags = std::pair<url::Origin, int32_t>; |
| 1338 | AutoplayOriginAndFlags autoplay_flags_; |
scottmg | 276753cf | 2016-10-27 18:25:22 | [diff] [blame] | 1339 | |
Mario Sanchez Prada | b3b852f | 2019-10-04 17:53:24 | [diff] [blame] | 1340 | mojo::AssociatedReceiver<blink::mojom::AutoplayConfigurationClient> |
| 1341 | autoplay_configuration_receiver_{this}; |
Henrique Ferreiro | 3a9751c | 2019-09-30 13:54:07 | [diff] [blame] | 1342 | mojo::Receiver<mojom::Frame> frame_receiver_{this}; |
| 1343 | mojo::AssociatedReceiver<mojom::FrameBindingsControl> |
| 1344 | frame_bindings_control_receiver_{this}; |
Shimi Zhang | bb73807 | 2019-07-09 18:54:40 | [diff] [blame] | 1345 | mojo::AssociatedReceiver<mojom::FrameNavigationControl> |
Mario Sanchez Prada | b3b852f | 2019-10-04 17:53:24 | [diff] [blame] | 1346 | frame_navigation_control_receiver_{this}; |
| 1347 | mojo::AssociatedReceiver<mojom::FullscreenVideoElementHandler> |
| 1348 | fullscreen_receiver_{this}; |
| 1349 | mojo::AssociatedReceiver<mojom::MhtmlFileWriter> mhtml_file_writer_receiver_{ |
| 1350 | this}; |
ben | 76f52b24 | 2016-06-18 05:42:48 | [diff] [blame] | 1351 | |
Daniel Cheng | 039670a4 | 2020-11-21 00:00:58 | [diff] [blame] | 1352 | // There are two different kinds of NavigationClients, the request |
| 1353 | // NavigationClient and the commit NavigationClient. |
| 1354 | // |
| 1355 | // ## Request NavigationClient ## |
| 1356 | // Set if and only if the frame that initiated the navigation and the frame |
| 1357 | // being navigated are both RenderFrameImpls in the same frame tree (i.e. the |
| 1358 | // navigation does not ever go through a RenderFrameProxy). This has |
| 1359 | // interesting implications for behavior differences between the two example |
| 1360 | // frame trees below: |
| 1361 | // |
| 1362 | // a.com a.com |
| 1363 | // ↓ ↓ |
| 1364 | // b.com example.a.com |
| 1365 | // |
| 1366 | // Assuming the standard site-per-process allocation policy, though (a.com) is |
| 1367 | // cross-origin to both (b.com) and (example.a.com): |
| 1368 | // |
| 1369 | // - (a.com) performing a navigation in (b.com) *will not* create a request |
| 1370 | // NavigationClient but |
| 1371 | // - (a.com) performing a navigation in (example.a.com) *will* create a |
| 1372 | // request |
| 1373 | // |
| 1374 | // Finally, note that the initiating RenderFrameImpl does *not* own the |
| 1375 | // request NavigationClient. Rather, the RanderFrameImpl that the navigation |
| 1376 | // *targets* is the RenderFrameImpl that owns the request NavigationClient. |
| 1377 | // |
| 1378 | // ## Commit NavigationClient ## |
| 1379 | // Always set in the RenderFrameImpl that has been selected to commit a |
| 1380 | // navigation. This selection happens when the NavigationRequest in the |
| 1381 | // browser process reaches READY_TO_COMMIT. |
| 1382 | // |
| 1383 | // If a navigation will commit in the same RenderFrameImpl that owns the |
| 1384 | // request NavigationClient, the request NavigationClient will be reused as |
| 1385 | // the commit NavigationClient. |
| 1386 | // |
| 1387 | // ## Navigation Cancellation ## |
| 1388 | // Cancellation is signalled by resetting the NavigationClient. This will |
| 1389 | // eventually trigger a connection error in the browser process, which |
| 1390 | // normally invokes NavigationRequest::OnRendererAbortedNavigation(). |
| 1391 | // |
| 1392 | // However, once the NavigationRequest reaches READY_TO_COMMIT in the browser |
| 1393 | // process, *only* the commit NavigationClient may cancel the navigation. This |
| 1394 | // has several implications: |
| 1395 | // |
| 1396 | // - Web APIs like window.stop() and document() use AbortClientNavigation(). |
| 1397 | // However, once the NavigationRequest reaches READY_TO_COMMIT, cancellation |
| 1398 | // is only respected if the navigation reuses the same RenderFrameImpl; |
| 1399 | // otherwise, it is ignored. |
| 1400 | // |
| 1401 | // Note that using RenderDocument means that all cross-document navigations |
| 1402 | // will use a provisional RenderFrameImpl: as such, all cross-document |
| 1403 | // navigations with RenderDocument will ignore cancellation after |
| 1404 | // READY_TO_COMMIT. This will be a compatibility issue for shipping |
| 1405 | // RenderDocument: see https://crbug.com/763106 for historical context. |
| 1406 | // |
| 1407 | // - If the frame is owned by an <object> element, CommitFailedNavigation() |
| 1408 | // will first trigger the fallback path (for remote frames, this |
| 1409 | // unconditionally sends the RenderFallbackContentInParentProcess() IPC; for |
| 1410 | // local frames, things are a bit more complicated...) before then |
| 1411 | // unconditionally calling AbortCommitNavigation() to ignore the commit. |
| 1412 | // |
| 1413 | // TODO(dcheng): The browser side knows the owner type of the navigating |
| 1414 | // frame. Don't bother sending a commit at all in that case. |
Arthur Hemery | d3011f6 | 2018-05-30 10:38:44 | [diff] [blame] | 1415 | std::unique_ptr<NavigationClient> navigation_client_impl_; |
| 1416 | |
chcunningham | 86f025e3 | 2017-05-30 20:43:23 | [diff] [blame] | 1417 | // Creates various media clients. |
| 1418 | MediaFactory media_factory_; |
| 1419 | |
Ken Rockot | 26e4e80 | 2018-07-31 15:03:33 | [diff] [blame] | 1420 | blink::AssociatedInterfaceRegistry associated_interfaces_; |
| 1421 | std::unique_ptr<blink::AssociatedInterfaceProvider> |
rockot | f62002a | 2016-09-15 00:08:59 | [diff] [blame] | 1422 | remote_associated_interfaces_; |
| 1423 | |
Dmitry Gozman | 6b7727d | 2019-05-06 18:30:24 | [diff] [blame] | 1424 | // This flag is true while browser process is processing a pending navigation, |
| 1425 | // as a result of mojom::FrameHost::BeginNavigation call. It is reset when the |
| 1426 | // navigation is either committed or cancelled. |
jam | 485372b1 | 2016-10-26 19:46:07 | [diff] [blame] | 1427 | bool browser_side_navigation_pending_ = false; |
jam | 485372b1 | 2016-10-26 19:46:07 | [diff] [blame] | 1428 | |
sammc | 7f6c6a0 | 2017-01-30 00:53:51 | [diff] [blame] | 1429 | // A bitwise OR of bindings types that have been enabled for this RenderFrame. |
| 1430 | // See BindingsPolicy for details. |
| 1431 | int enabled_bindings_ = 0; |
| 1432 | |
Nasko Oskov | 8a73f7d | 2019-09-27 22:29:32 | [diff] [blame] | 1433 | // This boolean indicates whether JS bindings for Mojo should be enabled at |
| 1434 | // the time the next script context is created. |
| 1435 | bool enable_mojo_js_bindings_ = false; |
| 1436 | |
Mario Sanchez Prada | b3b852f | 2019-10-04 17:53:24 | [diff] [blame] | 1437 | mojo::AssociatedRemote<mojom::FrameHost> frame_host_remote_; |
Gyuyoung Kim | 6c9ce902 | 2019-11-26 05:40:08 | [diff] [blame] | 1438 | mojo::ReceiverSet<service_manager::mojom::InterfaceProvider> |
| 1439 | interface_provider_receivers_; |
ben | b932d5a | 2017-04-26 19:40:13 | [diff] [blame] | 1440 | |
Minggang Wang | d712a91 | 2020-07-10 08:12:35 | [diff] [blame] | 1441 | mojo::ReceiverSet<blink::mojom::ResourceLoadInfoNotifier> |
| 1442 | resource_load_info_notifier_receivers_; |
| 1443 | |
Yuzhu Shen | 0c1715f | 2018-01-27 03:48:50 | [diff] [blame] | 1444 | // URLLoaderFactory instances used for subresource loading. |
Chong Zhang | 4513fab | 2018-02-28 18:50:18 | [diff] [blame] | 1445 | // Depending on how the frame was created, |loader_factories_| could be: |
| 1446 | // * |HostChildURLLoaderFactoryBundle| for standalone frames, or |
| 1447 | // * |TrackedChildURLLoaderFactoryBundle| for frames opened by other frames. |
Lukasz Anforowicz | cf7f598e | 2019-08-08 19:05:45 | [diff] [blame] | 1448 | // |
| 1449 | // This must be updated only via SetLoaderFactoryBundle, which is called at a |
| 1450 | // certain timing - right before the new document is committed during |
| 1451 | // FrameLoader::CommitNavigation. |
Minggang Wang | 035abc1 | 2020-11-05 03:05:15 | [diff] [blame] | 1452 | scoped_refptr<blink::ChildURLLoaderFactoryBundle> loader_factories_; |
Ken Rockot | be87ab32 | 2017-11-02 19:40:23 | [diff] [blame] | 1453 | |
Dmitry Gozman | 5e95b59 | 2020-03-04 23:01:51 | [diff] [blame] | 1454 | // Loader factory bundle is stored here temporary between CommitNavigation |
| 1455 | // and DidCommitNavigation calls. These happen synchronously one after |
| 1456 | // another. |
Minggang Wang | 035abc1 | 2020-11-05 03:05:15 | [diff] [blame] | 1457 | scoped_refptr<blink::ChildURLLoaderFactoryBundle> pending_loader_factories_; |
Dmitry Gozman | 5e95b59 | 2020-03-04 23:01:51 | [diff] [blame] | 1458 | |
Hiroki Nakagawa | 8600c37 | 2020-07-23 01:53:26 | [diff] [blame] | 1459 | scoped_refptr<blink::WebFrameRequestBlocker> frame_request_blocker_; |
John Abd-El-Malek | 9405d80e | 2018-08-08 16:50:21 | [diff] [blame] | 1460 | |
liberato | a8da3b5 | 2017-05-02 20:23:51 | [diff] [blame] | 1461 | // AndroidOverlay routing token from the browser, if we have one yet. |
| 1462 | base::Optional<base::UnguessableToken> overlay_routing_token_; |
| 1463 | |
Pavel Feldman | 2523472 | 2017-10-11 02:49:06 | [diff] [blame] | 1464 | // Used for devtools instrumentation and trace-ability. This token is |
| 1465 | // used to tag calls and requests in order to attribute them to the context |
| 1466 | // frame. |
| 1467 | // |devtools_frame_token_| is only defined by the browser and is never |
| 1468 | // sent back from the renderer in the control calls. |
Dmitry Gozman | f12caab | 2018-02-07 03:45:58 | [diff] [blame] | 1469 | base::UnguessableToken devtools_frame_token_; |
Pavel Feldman | 2523472 | 2017-10-11 02:49:06 | [diff] [blame] | 1470 | |
EhsanK | bd2cea99 | 2017-11-23 18:49:08 | [diff] [blame] | 1471 | // Bookkeeping to suppress redundant scroll and focus requests for an already |
| 1472 | // scrolled and focused editable node. |
| 1473 | bool has_scrolled_focused_editable_node_into_rect_ = false; |
| 1474 | gfx::Rect rect_for_scrolled_focused_editable_node_; |
| 1475 | |
Meredith Lane | 4947b2d7 | 2018-01-24 20:54:28 | [diff] [blame] | 1476 | // Contains a representation of the accessibility tree stored in content for |
| 1477 | // use inside of Blink. |
| 1478 | std::unique_ptr<blink::WebComputedAXTree> computed_ax_tree_; |
| 1479 | |
Lucas Gadani | 471160f9 | 2018-03-01 03:13:21 | [diff] [blame] | 1480 | // Used for tracking the frame's size and replicating it to the browser |
| 1481 | // process when it changes. |
| 1482 | base::Optional<gfx::Size> frame_size_; |
| 1483 | |
Justin Miron | c3452f9 | 2020-01-24 14:31:09 | [diff] [blame] | 1484 | // Used for tracking a frame's main frame document intersection and |
| 1485 | // and replicating it to the browser when it changes. |
Justin Miron | 95fddee | 2020-07-10 16:46:37 | [diff] [blame] | 1486 | base::Optional<blink::WebRect> mainframe_intersection_rect_; |
Justin Miron | c3452f9 | 2020-01-24 14:31:09 | [diff] [blame] | 1487 | |
Hiroki Nakagawa | ea68b64 | 2018-04-13 06:24:42 | [diff] [blame] | 1488 | std::unique_ptr<WebSocketHandshakeThrottleProvider> |
| 1489 | websocket_handshake_throttle_provider_; |
| 1490 | |
Sergey Volk | 8b09c2c5 | 2018-12-12 23:20:40 | [diff] [blame] | 1491 | RenderFrameMediaPlaybackOptions renderer_media_playback_options_; |
| 1492 | |
Dmitry Gozman | f5b5c5c | 2019-02-07 00:32:32 | [diff] [blame] | 1493 | class MHTMLBodyLoaderClient; |
| 1494 | std::unique_ptr<MHTMLBodyLoaderClient> mhtml_body_loader_client_; |
| 1495 | |
Vladimir Levin | cfca852 | 2019-07-30 19:01:21 | [diff] [blame] | 1496 | std::unique_ptr<blink::WebURLLoaderFactoryForTest> |
Vladimir Levin | b41bfe4 | 2019-07-16 21:13:44 | [diff] [blame] | 1497 | web_url_loader_factory_override_for_test_; |
| 1498 | |
Daniel Cheng | 8a8a920 | 2020-08-10 19:46:57 | [diff] [blame] | 1499 | // When the browser asks the renderer to commit a navigation, it should always |
| 1500 | // result in a committed navigation reported via DidCommitProvisionalLoad(). |
| 1501 | // This is important because DidCommitProvisionalLoad() is responsible for |
| 1502 | // swapping in the provisional local frame during a cross-process navigation. |
| 1503 | // Since this involves updating state in both the browser process and the |
| 1504 | // renderer process, this assert ensures that the state remains synchronized |
| 1505 | // between the two processes. |
| 1506 | // |
| 1507 | // Note: there is one exception that can result in no commit happening. |
| 1508 | // Committing a navigation runs unload handlers, which can detach |this|. In |
| 1509 | // that case, it doesn't matter that the navigation never commits, since the |
| 1510 | // logical node for |this| has been removed from the DOM. |
| 1511 | enum class NavigationCommitState { |
| 1512 | // Represents the initial empty document. This is represented separately |
| 1513 | // from |kNone| because Blink does not report the commit of the initial |
| 1514 | // empty document in a newly created frame. However, note that there are |
| 1515 | // some surprising quirks: |
| 1516 | // |
| 1517 | // <iframe></iframe> |
| 1518 | // |
| 1519 | // will *not* be in the |kInitialEmptyDocument| state: while it initially |
| 1520 | // starts at the initial empty document, the initial empty document is then |
| 1521 | // synchronously replaced with a navigation to about:blank. In contrast: |
| 1522 | // |
| 1523 | // <iframe src="https://slow.example.com"></iframe> |
| 1524 | // |
| 1525 | // will be in |kInitialEmptyDocument| until the navigation to |
| 1526 | // https://slow.example.com commits. |
| 1527 | kInitialEmptyDocument, |
| 1528 | // No commit in progress. This state also implies that the frame is not |
| 1529 | // displaying the initial empty document. |
| 1530 | kNone, |
| 1531 | // Marks that an active commit attempt is on the stack. |
| 1532 | kWillCommit, |
| 1533 | // Marks an active commit attempt as successful. |
| 1534 | kDidCommit, |
| 1535 | }; |
| 1536 | |
| 1537 | enum MayReplaceInitialEmptyDocumentTag { |
| 1538 | kMayReplaceInitialEmptyDocument, |
| 1539 | }; |
| 1540 | |
| 1541 | class CONTENT_EXPORT AssertNavigationCommits { |
| 1542 | public: |
| 1543 | // Construct a new scoper to verify that a navigation commit attempt |
| 1544 | // succeeds. Asserts that: |
| 1545 | // - no navigation is in progress |
| 1546 | // - the frame is not displaying the initial empty document. |
| 1547 | explicit AssertNavigationCommits(RenderFrameImpl* frame); |
| 1548 | |
| 1549 | // Similar to the previous constructor but allows transitions from the |
| 1550 | // initial empty document. |
| 1551 | explicit AssertNavigationCommits(RenderFrameImpl* frame, |
| 1552 | MayReplaceInitialEmptyDocumentTag); |
| 1553 | |
| 1554 | ~AssertNavigationCommits(); |
| 1555 | |
| 1556 | private: |
| 1557 | explicit AssertNavigationCommits( |
| 1558 | RenderFrameImpl* frame, |
| 1559 | bool allow_transition_from_initial_empty_document); |
| 1560 | |
| 1561 | const base::WeakPtr<RenderFrameImpl> frame_; |
| 1562 | }; |
| 1563 | |
| 1564 | NavigationCommitState navigation_commit_state_ = |
| 1565 | NavigationCommitState::kInitialEmptyDocument; |
| 1566 | |
Jeremy Roman | 3bca4bf | 2019-07-11 03:41:25 | [diff] [blame] | 1567 | base::WeakPtrFactory<RenderFrameImpl> weak_factory_{this}; |
[email protected] | 9630731 | 2014-05-04 01:00:19 | [diff] [blame] | 1568 | |
[email protected] | 227692c5 | 2013-05-31 22:43:04 | [diff] [blame] | 1569 | DISALLOW_COPY_AND_ASSIGN(RenderFrameImpl); |
| 1570 | }; |
| 1571 | |
| 1572 | } // namespace content |
| 1573 | |
[email protected] | 85d85fd | 2013-06-19 00:57:41 | [diff] [blame] | 1574 | #endif // CONTENT_RENDERER_RENDER_FRAME_IMPL_H_ |