[email protected] | 91854cd | 2012-01-10 19:43:57 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
license.bot | bf09a50 | 2008-08-24 00:55:55 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 4 | |
[email protected] | 93ddb3c | 2012-04-11 21:44:29 | [diff] [blame] | 5 | #include "content/browser/web_contents/web_contents_impl.h" |
[email protected] | 3952656 | 2011-02-05 03:41:51 | [diff] [blame] | 6 | |
avi | b734894 | 2015-12-25 20:57:10 | [diff] [blame] | 7 | #include <stddef.h> |
| 8 | |
w.shackleton | 49bcd39 | 2016-01-06 17:38:22 | [diff] [blame] | 9 | #include <cmath> |
[email protected] | 2bb17188 | 2012-03-07 02:09:46 | [diff] [blame] | 10 | #include <utility> |
rkaplow | e56a5203 | 2017-02-07 00:14:54 | [diff] [blame] | 11 | #include <vector> |
[email protected] | b75b829 | 2010-10-01 07:28:25 | [diff] [blame] | 12 | |
[email protected] | 36fb2c7c | 2011-04-04 15:49:08 | [diff] [blame] | 13 | #include "base/command_line.h" |
creis | fafed88 | 2016-07-29 00:03:09 | [diff] [blame] | 14 | #include "base/debug/dump_without_crashing.h" |
zqzhang | 181047e6 | 2016-07-01 13:37:17 | [diff] [blame] | 15 | #include "base/feature_list.h" |
jinsukkim | 79df88a | 2017-01-04 06:26:15 | [diff] [blame] | 16 | #include "base/i18n/character_encoding.h" |
[email protected] | cbb1ef59 | 2013-06-05 19:49:46 | [diff] [blame] | 17 | #include "base/lazy_instance.h" |
skyostil | 95082a6 | 2015-06-05 19:53:07 | [diff] [blame] | 18 | #include "base/location.h" |
[email protected] | 6d636e6 | 2013-07-31 03:15:56 | [diff] [blame] | 19 | #include "base/logging.h" |
avi | b734894 | 2015-12-25 20:57:10 | [diff] [blame] | 20 | #include "base/macros.h" |
fdoray | ba12142 | 2016-12-23 19:51:48 | [diff] [blame] | 21 | #include "base/memory/ptr_util.h" |
dmazzoni | d95ae84 | 2016-04-12 21:17:39 | [diff] [blame] | 22 | #include "base/memory/ref_counted.h" |
asvitkine | 8d51e9d | 2016-09-02 23:55:43 | [diff] [blame] | 23 | #include "base/metrics/histogram_macros.h" |
bratell | 0a7406f | 2017-03-28 07:46:37 | [diff] [blame] | 24 | #include "base/metrics/user_metrics.h" |
[email protected] | 04cbd3d | 2013-12-04 04:58:20 | [diff] [blame] | 25 | #include "base/process/process.h" |
skyostil | 95082a6 | 2015-06-05 19:53:07 | [diff] [blame] | 26 | #include "base/single_thread_task_runner.h" |
[email protected] | 348fbaac | 2013-06-11 06:31:51 | [diff] [blame] | 27 | #include "base/strings/string16.h" |
| 28 | #include "base/strings/string_number_conversions.h" |
| 29 | #include "base/strings/string_util.h" |
[email protected] | 74ebfb1 | 2013-06-07 20:48:00 | [diff] [blame] | 30 | #include "base/strings/utf_string_conversions.h" |
gab | 30f26df | 2016-05-11 19:37:55 | [diff] [blame] | 31 | #include "base/threading/thread_task_runner_handle.h" |
[email protected] | a43858f | 2013-06-28 15:18:37 | [diff] [blame] | 32 | #include "base/time/time.h" |
ssid | 3e76561 | 2015-01-28 04:03:42 | [diff] [blame] | 33 | #include "base/trace_event/trace_event.h" |
avi | b734894 | 2015-12-25 20:57:10 | [diff] [blame] | 34 | #include "build/build_config.h" |
Min Qin | da0ed206 | 2018-02-23 22:00:53 | [diff] [blame] | 35 | #include "components/download/public/common/download_stats.h" |
nzolghadr | d87a308d | 2016-12-07 15:45:56 | [diff] [blame] | 36 | #include "components/rappor/public/rappor_utils.h" |
rsleevi | 24f64dc2 | 2015-08-07 21:39:21 | [diff] [blame] | 37 | #include "components/url_formatter/url_formatter.h" |
[email protected] | 9564021 | 2014-07-26 18:14:30 | [diff] [blame] | 38 | #include "content/browser/accessibility/browser_accessibility_state_impl.h" |
jamescook | da250581 | 2015-03-20 18:01:18 | [diff] [blame] | 39 | #include "content/browser/bad_message.h" |
[email protected] | 7a846df | 2012-09-20 19:17:39 | [diff] [blame] | 40 | #include "content/browser/browser_plugin/browser_plugin_embedder.h" |
| 41 | #include "content/browser/browser_plugin/browser_plugin_guest.h" |
[email protected] | b953542 | 2012-02-09 01:47:59 | [diff] [blame] | 42 | #include "content/browser/child_process_security_policy_impl.h" |
Pavel Feldman | 3c1842b | 2017-08-02 05:00:16 | [diff] [blame] | 43 | #include "content/browser/devtools/protocol/page_handler.h" |
dgozman | f00c4f7 | 2016-10-19 17:45:15 | [diff] [blame] | 44 | #include "content/browser/devtools/render_frame_devtools_agent_host.h" |
[email protected] | 5f2aa72 | 2013-08-07 16:59:41 | [diff] [blame] | 45 | #include "content/browser/dom_storage/dom_storage_context_wrapper.h" |
[email protected] | 1ea3c79 | 2012-04-17 01:25:04 | [diff] [blame] | 46 | #include "content/browser/dom_storage/session_storage_namespace_impl.h" |
[email protected] | aa4f397 | 2012-03-01 18:12:12 | [diff] [blame] | 47 | #include "content/browser/download/mhtml_generation_manager.h" |
[email protected] | a53209b | 2012-01-20 16:48:16 | [diff] [blame] | 48 | #include "content/browser/download/save_package.h" |
paulmeyer | c0b762b | 2016-04-13 11:55:17 | [diff] [blame] | 49 | #include "content/browser/find_request_manager.h" |
[email protected] | bffc830 | 2014-01-23 20:52:16 | [diff] [blame] | 50 | #include "content/browser/frame_host/cross_process_frame_connector.h" |
ananta | 4b7467a5 | 2016-09-23 01:42:38 | [diff] [blame] | 51 | #include "content/browser/frame_host/frame_tree_node.h" |
[email protected] | d4a8ca48 | 2013-10-30 21:06:40 | [diff] [blame] | 52 | #include "content/browser/frame_host/interstitial_page_impl.h" |
| 53 | #include "content/browser/frame_host/navigation_entry_impl.h" |
clamy | 0e11988 | 2015-07-31 16:12:33 | [diff] [blame] | 54 | #include "content/browser/frame_host/navigation_handle_impl.h" |
Arthur Hemery | c338017 | 2018-01-22 14:00:17 | [diff] [blame] | 55 | #include "content/browser/frame_host/navigation_request.h" |
[email protected] | 6ea6bdf | 2013-12-06 13:35:01 | [diff] [blame] | 56 | #include "content/browser/frame_host/navigator_impl.h" |
[email protected] | 5291380 | 2013-12-10 05:52:18 | [diff] [blame] | 57 | #include "content/browser/frame_host/render_frame_host_impl.h" |
lfg | db5c4ed | 2016-03-04 23:09:07 | [diff] [blame] | 58 | #include "content/browser/frame_host/render_frame_proxy_host.h" |
Kenneth Russell | 954ed9ce | 2018-04-12 23:07:01 | [diff] [blame] | 59 | #include "content/browser/gpu/gpu_data_manager_impl.h" |
csharrison | 2e8c98e | 2016-08-01 23:56:25 | [diff] [blame] | 60 | #include "content/browser/loader/loader_io_thread_notifier.h" |
[email protected] | 678c036 | 2012-12-05 08:02:44 | [diff] [blame] | 61 | #include "content/browser/loader/resource_dispatcher_host_impl.h" |
mlamouri | efdca9d | 2014-09-16 16:55:40 | [diff] [blame] | 62 | #include "content/browser/manifest/manifest_manager_host.h" |
dalecurtis | bc6572e1 | 2014-09-12 19:22:30 | [diff] [blame] | 63 | #include "content/browser/media/audio_stream_monitor.h" |
miu | 50f9789 | 2014-09-22 22:49:52 | [diff] [blame] | 64 | #include "content/browser/media/capture/web_contents_audio_muter.h" |
dalecurtis | 88c24007 | 2015-12-09 02:11:18 | [diff] [blame] | 65 | #include "content/browser/media/media_web_contents_observer.h" |
zqzhang | 1adf3cb | 2016-11-01 11:26:45 | [diff] [blame] | 66 | #include "content/browser/media/session/media_session_impl.h" |
tommycli | eb25b2a | 2014-11-03 19:45:09 | [diff] [blame] | 67 | #include "content/browser/plugin_content_origin_whitelist.h" |
[email protected] | f3b1a08 | 2011-11-18 00:34:30 | [diff] [blame] | 68 | #include "content/browser/renderer_host/render_process_host_impl.h" |
[email protected] | 2116103 | 2014-05-05 16:56:50 | [diff] [blame] | 69 | #include "content/browser/renderer_host/render_view_host_delegate_view.h" |
[email protected] | b3c41c0b | 2012-03-06 15:48:32 | [diff] [blame] | 70 | #include "content/browser/renderer_host/render_view_host_impl.h" |
[email protected] | bafe6cd | 2012-05-23 23:09:50 | [diff] [blame] | 71 | #include "content/browser/renderer_host/render_widget_host_impl.h" |
kenrb | 2a565f8 | 2015-09-02 20:24:59 | [diff] [blame] | 72 | #include "content/browser/renderer_host/render_widget_host_input_event_router.h" |
[email protected] | cfd80b0 | 2014-05-01 17:46:48 | [diff] [blame] | 73 | #include "content/browser/renderer_host/render_widget_host_view_base.h" |
Ken Buchanan | daef006b | 2017-08-17 18:32:15 | [diff] [blame] | 74 | #include "content/browser/renderer_host/render_widget_host_view_child_frame.h" |
ekaramad | add88229 | 2016-06-08 15:22:56 | [diff] [blame] | 75 | #include "content/browser/renderer_host/text_input_manager.h" |
leon.han | 552e9de | 2017-02-09 14:37:30 | [diff] [blame] | 76 | #include "content/browser/screen_orientation/screen_orientation_provider.h" |
[email protected] | b658359 | 2012-01-25 19:52:33 | [diff] [blame] | 77 | #include "content/browser/site_instance_impl.h" |
lfg | c740d4b2 | 2016-04-15 16:45:33 | [diff] [blame] | 78 | #include "content/browser/web_contents/web_contents_view_child_frame.h" |
[email protected] | b5a4084 | 2012-11-28 15:26:11 | [diff] [blame] | 79 | #include "content/browser/web_contents/web_contents_view_guest.h" |
[email protected] | eb2ef21 | 2013-01-29 04:27:58 | [diff] [blame] | 80 | #include "content/browser/webui/generic_handler.h" |
[email protected] | 86a0a6e | 2013-01-28 06:33:03 | [diff] [blame] | 81 | #include "content/browser/webui/web_ui_controller_factory_registry.h" |
[email protected] | d235345 | 2012-01-19 19:53:56 | [diff] [blame] | 82 | #include "content/browser/webui/web_ui_impl.h" |
[email protected] | 8eb0456 | 2013-03-06 03:41:14 | [diff] [blame] | 83 | #include "content/common/browser_plugin/browser_plugin_constants.h" |
[email protected] | 703dd66 | 2013-03-05 07:37:42 | [diff] [blame] | 84 | #include "content/common/browser_plugin/browser_plugin_messages.h" |
Paul Meyer | 0c58c371 | 2016-11-17 22:59:51 | [diff] [blame] | 85 | #include "content/common/drag_messages.h" |
[email protected] | f114fa4 | 2013-12-06 17:06:44 | [diff] [blame] | 86 | #include "content/common/frame_messages.h" |
[email protected] | 1f3fc1d | 2014-04-03 14:50:17 | [diff] [blame] | 87 | #include "content/common/input_messages.h" |
lfg | db5c4ed | 2016-03-04 23:09:07 | [diff] [blame] | 88 | #include "content/common/page_messages.h" |
nasko | 3463467 | 2016-07-29 18:46:06 | [diff] [blame] | 89 | #include "content/common/page_state_serialization.h" |
rockot | 5c478a7 | 2016-09-28 23:14:18 | [diff] [blame] | 90 | #include "content/common/render_message_filter.mojom.h" |
[email protected] | 2c556966 | 2011-03-22 20:45:02 | [diff] [blame] | 91 | #include "content/common/view_messages.h" |
[email protected] | 31a71eaf | 2014-03-13 01:47:36 | [diff] [blame] | 92 | #include "content/public/browser/ax_event_notification_details.h" |
[email protected] | ccb79730 | 2011-12-15 16:55:11 | [diff] [blame] | 93 | #include "content/public/browser/browser_context.h" |
[email protected] | 139355f | 2014-05-11 14:21:28 | [diff] [blame] | 94 | #include "content/public/browser/browser_plugin_guest_manager.h" |
Gabriel Charette | 790754c | 2018-03-16 21:32:59 | [diff] [blame] | 95 | #include "content/public/browser/browser_thread.h" |
[email protected] | 87f3c08 | 2011-10-19 18:07:44 | [diff] [blame] | 96 | #include "content/public/browser/content_browser_client.h" |
[email protected] | e582fdd | 2011-12-20 16:48:17 | [diff] [blame] | 97 | #include "content/public/browser/download_manager.h" |
ekaramad | a110f64 | 2016-12-21 19:47:28 | [diff] [blame] | 98 | #include "content/public/browser/focused_node_details.h" |
ekaramad | 1beabecc | 2016-09-23 20:18:17 | [diff] [blame] | 99 | #include "content/public/browser/guest_mode.h" |
[email protected] | d908348 | 2012-01-06 00:38:46 | [diff] [blame] | 100 | #include "content/public/browser/invalidate_type.h" |
[email protected] | 71a88bb | 2013-02-01 22:05:15 | [diff] [blame] | 101 | #include "content/public/browser/javascript_dialog_manager.h" |
sky | f65d9bb | 2017-03-24 02:26:39 | [diff] [blame] | 102 | #include "content/public/browser/keyboard_event_processing_result.h" |
[email protected] | 09d31d5 | 2012-03-11 22:30:27 | [diff] [blame] | 103 | #include "content/public/browser/load_notification_details.h" |
[email protected] | 5b96836f | 2011-12-22 07:39:00 | [diff] [blame] | 104 | #include "content/public/browser/navigation_details.h" |
[email protected] | 375fa1b | 2012-05-22 22:05:37 | [diff] [blame] | 105 | #include "content/public/browser/notification_details.h" |
[email protected] | be2510c0 | 2012-05-28 14:52:14 | [diff] [blame] | 106 | #include "content/public/browser/notification_service.h" |
scottmg | 011d96e3 | 2016-06-29 19:15:08 | [diff] [blame] | 107 | #include "content/public/browser/notification_types.h" |
[email protected] | 9564021 | 2014-07-26 18:14:30 | [diff] [blame] | 108 | #include "content/public/browser/render_widget_host_iterator.h" |
Lukasz Anforowicz | e1b954d9 | 2017-10-30 21:28:06 | [diff] [blame] | 109 | #include "content/public/browser/restore_type.h" |
estark | 5ea80e5 | 2015-06-19 18:43:12 | [diff] [blame] | 110 | #include "content/public/browser/security_style_explanations.h" |
falken | 52a56e3 | 2016-12-08 05:02:40 | [diff] [blame] | 111 | #include "content/public/browser/ssl_status.h" |
[email protected] | 4c3a2358 | 2012-08-18 08:54:34 | [diff] [blame] | 112 | #include "content/public/browser/storage_partition.h" |
rockot | f62002a | 2016-09-15 00:08:59 | [diff] [blame] | 113 | #include "content/public/browser/web_contents_binding_set.h" |
[email protected] | 674bc59 | 2011-12-20 23:00:42 | [diff] [blame] | 114 | #include "content/public/browser/web_contents_delegate.h" |
[email protected] | e091df8 | 2011-10-11 18:13:21 | [diff] [blame] | 115 | #include "content/public/common/bindings_policy.h" |
carlosk | d80262f5 | 2015-12-16 14:40:35 | [diff] [blame] | 116 | #include "content/public/common/browser_side_navigation_policy.h" |
alexmos | c9e76ec | 2016-05-16 22:59:37 | [diff] [blame] | 117 | #include "content/public/common/child_process_host.h" |
[email protected] | 54087fe | 2011-10-28 22:02:48 | [diff] [blame] | 118 | #include "content/public/common/content_constants.h" |
Francois Doray | 3f2afbd | 2018-04-06 19:18:18 | [diff] [blame] | 119 | #include "content/public/common/content_features.h" |
[email protected] | 64d69de4 | 2012-02-06 00:19:54 | [diff] [blame] | 120 | #include "content/public/common/content_switches.h" |
Lukasz Anforowicz | e1b954d9 | 2017-10-30 21:28:06 | [diff] [blame] | 121 | #include "content/public/common/page_state.h" |
[email protected] | 7940b8e | 2013-07-25 23:08:49 | [diff] [blame] | 122 | #include "content/public/common/page_zoom.h" |
[email protected] | 04cbd3d | 2013-12-04 04:58:20 | [diff] [blame] | 123 | #include "content/public/common/result_codes.h" |
Ke He | 7319dbe | 2017-11-09 05:54:44 | [diff] [blame] | 124 | #include "content/public/common/service_manager_connection.h" |
[email protected] | f16cc678 | 2013-12-16 23:42:57 | [diff] [blame] | 125 | #include "content/public/common/url_utils.h" |
[email protected] | b3a97b5 | 2014-07-09 06:25:05 | [diff] [blame] | 126 | #include "content/public/common/web_preferences.h" |
wjmaclean | 6495190 | 2016-04-29 20:59:12 | [diff] [blame] | 127 | #include "net/base/url_util.h" |
[email protected] | 8bfc827 | 2013-09-09 20:10:53 | [diff] [blame] | 128 | #include "net/http/http_cache.h" |
| 129 | #include "net/http/http_transaction_factory.h" |
rhalavati | 0fbaeef3 | 2017-06-01 15:56:30 | [diff] [blame] | 130 | #include "net/traffic_annotation/network_traffic_annotation.h" |
[email protected] | 8bfc827 | 2013-09-09 20:10:53 | [diff] [blame] | 131 | #include "net/url_request/url_request_context.h" |
[email protected] | abe2c03 | 2011-03-31 18:49:34 | [diff] [blame] | 132 | #include "net/url_request/url_request_context_getter.h" |
Scott Violet | 02e38b9 | 2018-03-27 23:42:14 | [diff] [blame] | 133 | #include "ppapi/buildflags/buildflags.h" |
Ke He | 31d0bb0 | 2018-02-24 07:16:24 | [diff] [blame] | 134 | #include "services/device/public/mojom/constants.mojom.h" |
Mounir Lamouri | fd9dcefa | 2017-07-06 10:26:55 | [diff] [blame] | 135 | #include "services/metrics/public/cpp/ukm_recorder.h" |
Ke He | 7319dbe | 2017-11-09 05:54:44 | [diff] [blame] | 136 | #include "services/service_manager/public/cpp/connector.h" |
rockot | 734fb66 | 2016-10-15 16:41:30 | [diff] [blame] | 137 | #include "services/service_manager/public/cpp/interface_provider.h" |
Blink Reformat | a30d423 | 2018-04-07 15:31:06 | [diff] [blame] | 138 | #include "third_party/blink/public/common/frame/sandbox_flags.h" |
| 139 | #include "third_party/blink/public/common/mime_util/mime_util.h" |
| 140 | #include "third_party/blink/public/platform/web_security_style.h" |
halton.huo | ca2eabd | 2015-07-06 08:17:40 | [diff] [blame] | 141 | #include "third_party/skia/include/core/SkBitmap.h" |
dmazzoni | d95ae84 | 2016-04-12 21:17:39 | [diff] [blame] | 142 | #include "ui/accessibility/ax_tree_combiner.h" |
[email protected] | a08412b6 | 2012-05-29 21:28:56 | [diff] [blame] | 143 | #include "ui/base/layout.h" |
Daniel Cheng | 90196c8 | 2018-04-25 21:49:14 | [diff] [blame] | 144 | #include "ui/events/base_event_utils.h" |
chongz | 4a975194 | 2016-08-17 17:49:39 | [diff] [blame] | 145 | #include "ui/events/blink/web_input_event_traits.h" |
[email protected] | 66bd551 | 2012-08-01 02:02:52 | [diff] [blame] | 146 | #include "ui/gl/gl_switches.h" |
[email protected] | 3c733bde | 2010-12-21 19:56:31 | [diff] [blame] | 147 | |
ekaramad | a110f64 | 2016-12-21 19:47:28 | [diff] [blame] | 148 | #if defined(OS_WIN) |
| 149 | #include "content/browser/renderer_host/dip_util.h" |
| 150 | #include "ui/gfx/geometry/dip_util.h" |
| 151 | #endif |
| 152 | |
[email protected] | 583418cc | 2013-01-17 14:01:10 | [diff] [blame] | 153 | #if defined(OS_ANDROID) |
hugo.holgersson | 61288e6c | 2015-01-28 17:04:40 | [diff] [blame] | 154 | #include "content/browser/android/content_video_view.h" |
mfomitchev | 2b8b066a | 2016-01-28 19:23:15 | [diff] [blame] | 155 | #include "content/browser/android/date_time_chooser_android.h" |
sammc | f5f1b0f | 2016-09-20 23:05:11 | [diff] [blame] | 156 | #include "content/browser/android/java_interfaces_impl.h" |
dalecurtis | c85ed63 | 2016-01-13 00:22:46 | [diff] [blame] | 157 | #include "content/browser/media/android/media_web_contents_observer_android.h" |
[email protected] | 155c7f2 | 2013-12-09 17:07:18 | [diff] [blame] | 158 | #include "content/browser/web_contents/web_contents_android.h" |
Ke He | 31d0bb0 | 2018-02-24 07:16:24 | [diff] [blame] | 159 | #include "services/device/public/mojom/nfc.mojom.h" |
mcnee | 336ea2c | 2017-05-23 22:50:59 | [diff] [blame] | 160 | #else // !OS_ANDROID |
| 161 | #include "content/browser/host_zoom_map_impl.h" |
| 162 | #include "content/browser/host_zoom_map_observer.h" |
mfomitchev | 2b8b066a | 2016-01-28 19:23:15 | [diff] [blame] | 163 | #endif // OS_ANDROID |
[email protected] | 583418cc | 2013-01-17 14:01:10 | [diff] [blame] | 164 | |
brettw | 4b46108 | 2016-11-19 18:55:16 | [diff] [blame] | 165 | #if BUILDFLAG(ENABLE_PLUGINS) |
zqzhang | 181047e6 | 2016-07-01 13:37:17 | [diff] [blame] | 166 | #include "content/browser/media/session/pepper_playback_observer.h" |
Lei Zhang | ebcc630 | 2018-01-12 19:46:45 | [diff] [blame] | 167 | #endif |
zqzhang | 181047e6 | 2016-07-01 13:37:17 | [diff] [blame] | 168 | |
[email protected] | 8ff00d7 | 2012-10-23 19:12:21 | [diff] [blame] | 169 | namespace content { |
[email protected] | 420ae01 | 2009-04-24 05:16:32 | [diff] [blame] | 170 | namespace { |
| 171 | |
[email protected] | 960b037 | 2014-05-19 18:01:00 | [diff] [blame] | 172 | const int kMinimumDelayBetweenLoadingUpdatesMS = 100; |
[email protected] | 82114f5 | 2012-03-20 22:53:41 | [diff] [blame] | 173 | const char kDotGoogleDotCom[] = ".google.com"; |
[email protected] | ca40603 | 2011-07-19 21:53:05 | [diff] [blame] | 174 | |
[email protected] | 155c7f2 | 2013-12-09 17:07:18 | [diff] [blame] | 175 | #if defined(OS_ANDROID) |
rob.buis | f06a8bf | 2017-03-10 18:11:32 | [diff] [blame] | 176 | const void* const kWebContentsAndroidKey = &kWebContentsAndroidKey; |
Lei Zhang | ebcc630 | 2018-01-12 19:46:45 | [diff] [blame] | 177 | #endif |
[email protected] | 155c7f2 | 2013-12-09 17:07:18 | [diff] [blame] | 178 | |
Avi Drissman | a911482 | 2018-03-23 18:25:55 | [diff] [blame] | 179 | base::LazyInstance<std::vector< |
| 180 | WebContentsImpl::FriendWrapper::CreatedCallback>>::DestructorAtExit |
| 181 | g_created_callbacks = LAZY_INSTANCE_INITIALIZER; |
[email protected] | cbb1ef59 | 2013-06-05 19:49:46 | [diff] [blame] | 182 | |
[email protected] | 8bfc827 | 2013-09-09 20:10:53 | [diff] [blame] | 183 | void NotifyCacheOnIO( |
| 184 | scoped_refptr<net::URLRequestContextGetter> request_context, |
| 185 | const GURL& url, |
| 186 | const std::string& http_method) { |
gunsch | e668855c | 2015-03-05 02:37:58 | [diff] [blame] | 187 | net::HttpCache* cache = request_context->GetURLRequestContext()-> |
| 188 | http_transaction_factory()->GetCache(); |
| 189 | if (cache) |
| 190 | cache->OnExternalCacheHit(url, http_method); |
[email protected] | 8bfc827 | 2013-09-09 20:10:53 | [diff] [blame] | 191 | } |
| 192 | |
dcheng | 57e39e2 | 2016-01-21 00:25:38 | [diff] [blame] | 193 | bool HasMatchingProcess(FrameTree* tree, int render_process_id) { |
| 194 | for (FrameTreeNode* node : tree->Nodes()) { |
| 195 | if (node->current_frame_host()->GetProcess()->GetID() == render_process_id) |
| 196 | return true; |
alexmos | 4cf2aa3 | 2015-07-15 23:40:43 | [diff] [blame] | 197 | } |
dcheng | 57e39e2 | 2016-01-21 00:25:38 | [diff] [blame] | 198 | return false; |
[email protected] | 9564021 | 2014-07-26 18:14:30 | [diff] [blame] | 199 | } |
| 200 | |
kenrb | 1922185 | 2016-04-29 17:21:40 | [diff] [blame] | 201 | bool HasMatchingWidgetHost(FrameTree* tree, RenderWidgetHost* host) { |
| 202 | // This method scans the frame tree rather than checking whether |
| 203 | // host->delegate() == this, which allows it to return false when the host |
| 204 | // for a frame that is pending or pending deletion. |
| 205 | if (!host) |
| 206 | return false; |
| 207 | |
| 208 | for (FrameTreeNode* node : tree->Nodes()) { |
| 209 | if (node->current_frame_host()->GetRenderWidgetHost() == host) |
| 210 | return true; |
| 211 | } |
| 212 | return false; |
| 213 | } |
| 214 | |
dmazzoni | f8a3104 | 2016-12-03 00:52:13 | [diff] [blame] | 215 | void UpdateAccessibilityModeOnFrame(RenderFrameHost* frame_host) { |
| 216 | static_cast<RenderFrameHostImpl*>(frame_host)->UpdateAccessibilityMode(); |
[email protected] | 9564021 | 2014-07-26 18:14:30 | [diff] [blame] | 217 | } |
| 218 | |
dtseng | 0dd3fa1 | 2015-07-22 19:00:52 | [diff] [blame] | 219 | void ResetAccessibility(RenderFrameHost* rfh) { |
| 220 | static_cast<RenderFrameHostImpl*>(rfh)->AccessibilityReset(); |
| 221 | } |
| 222 | |
paulmeyer | feafc2d | 2017-04-25 21:46:40 | [diff] [blame] | 223 | // Helper for GetInnerWebContents(). |
| 224 | bool GetInnerWebContentsHelper( |
| 225 | std::vector<WebContentsImpl*>* all_guest_contents, |
| 226 | WebContents* guest_contents) { |
| 227 | all_guest_contents->push_back(static_cast<WebContentsImpl*>(guest_contents)); |
| 228 | return false; |
| 229 | } |
| 230 | |
Ian Clelland | 5cbaaf8 | 2017-11-27 22:00:03 | [diff] [blame] | 231 | RenderFrameHostImpl* FindOpenerRFH(const WebContents::CreateParams& params) { |
| 232 | RenderFrameHostImpl* opener_rfh = nullptr; |
alexmos | e201c7cd | 2015-06-10 17:14:21 | [diff] [blame] | 233 | if (params.opener_render_frame_id != MSG_ROUTING_NONE) { |
Ian Clelland | 5cbaaf8 | 2017-11-27 22:00:03 | [diff] [blame] | 234 | opener_rfh = RenderFrameHostImpl::FromID(params.opener_render_process_id, |
| 235 | params.opener_render_frame_id); |
alexmos | e201c7cd | 2015-06-10 17:14:21 | [diff] [blame] | 236 | } |
Ian Clelland | 5cbaaf8 | 2017-11-27 22:00:03 | [diff] [blame] | 237 | return opener_rfh; |
lukasza | 6f8ac62 | 2017-06-06 03:10:20 | [diff] [blame] | 238 | } |
| 239 | |
Pavel Feldman | 3c1842b | 2017-08-02 05:00:16 | [diff] [blame] | 240 | // Ensures that OnDialogClosed is only called once. |
| 241 | class CloseDialogCallbackWrapper |
| 242 | : public base::RefCountedThreadSafe<CloseDialogCallbackWrapper> { |
| 243 | public: |
Avi Drissman | e04d399 | 2017-10-05 15:11:36 | [diff] [blame] | 244 | using CloseCallback = |
| 245 | base::OnceCallback<void(bool, bool, const base::string16&)>; |
| 246 | |
| 247 | explicit CloseDialogCallbackWrapper(CloseCallback callback) |
| 248 | : callback_(std::move(callback)) {} |
Pavel Feldman | 3c1842b | 2017-08-02 05:00:16 | [diff] [blame] | 249 | |
| 250 | void Run(bool dialog_was_suppressed, |
| 251 | bool success, |
| 252 | const base::string16& user_input) { |
Avi Drissman | e04d399 | 2017-10-05 15:11:36 | [diff] [blame] | 253 | if (callback_.is_null()) |
Pavel Feldman | 3c1842b | 2017-08-02 05:00:16 | [diff] [blame] | 254 | return; |
Avi Drissman | e04d399 | 2017-10-05 15:11:36 | [diff] [blame] | 255 | std::move(callback_).Run(dialog_was_suppressed, success, user_input); |
Pavel Feldman | 3c1842b | 2017-08-02 05:00:16 | [diff] [blame] | 256 | } |
| 257 | |
| 258 | private: |
| 259 | friend class base::RefCountedThreadSafe<CloseDialogCallbackWrapper>; |
| 260 | ~CloseDialogCallbackWrapper() {} |
Avi Drissman | e04d399 | 2017-10-05 15:11:36 | [diff] [blame] | 261 | |
| 262 | CloseCallback callback_; |
Pavel Feldman | 3c1842b | 2017-08-02 05:00:16 | [diff] [blame] | 263 | }; |
| 264 | |
lukasza | 6f8ac62 | 2017-06-06 03:10:20 | [diff] [blame] | 265 | } // namespace |
| 266 | |
Erik Chen | bb8e738e | 2018-04-28 14:10:43 | [diff] [blame] | 267 | std::unique_ptr<WebContents> WebContents::Create( |
| 268 | const WebContents::CreateParams& params) { |
erikchen | 50735fd | 2018-05-05 15:08:33 | [diff] [blame^] | 269 | return WebContentsImpl::CreateWithOpener(params, FindOpenerRFH(params)); |
[email protected] | d1198fd | 2012-08-13 22:50:19 | [diff] [blame] | 270 | } |
| 271 | |
erikchen | ade1fef | 2018-05-02 22:07:57 | [diff] [blame] | 272 | std::unique_ptr<WebContents> WebContents::CreateWithSessionStorage( |
[email protected] | 54944cde | 2012-12-09 09:24:59 | [diff] [blame] | 273 | const WebContents::CreateParams& params, |
[email protected] | fdac6ade | 2013-07-20 01:06:30 | [diff] [blame] | 274 | const SessionStorageNamespaceMap& session_storage_namespace_map) { |
erikchen | ade1fef | 2018-05-02 22:07:57 | [diff] [blame] | 275 | std::unique_ptr<WebContentsImpl> new_contents( |
| 276 | new WebContentsImpl(params.browser_context)); |
Ian Clelland | 5cbaaf8 | 2017-11-27 22:00:03 | [diff] [blame] | 277 | RenderFrameHostImpl* opener_rfh = FindOpenerRFH(params); |
| 278 | FrameTreeNode* opener = nullptr; |
| 279 | if (opener_rfh) |
| 280 | opener = opener_rfh->frame_tree_node(); |
| 281 | new_contents->SetOpenerForNewContents(opener, params.opener_suppressed); |
[email protected] | fdac6ade | 2013-07-20 01:06:30 | [diff] [blame] | 282 | |
| 283 | for (SessionStorageNamespaceMap::const_iterator it = |
| 284 | session_storage_namespace_map.begin(); |
| 285 | it != session_storage_namespace_map.end(); |
| 286 | ++it) { |
| 287 | new_contents->GetController() |
| 288 | .SetSessionStorageNamespace(it->first, it->second.get()); |
| 289 | } |
| 290 | |
[email protected] | 54944cde | 2012-12-09 09:24:59 | [diff] [blame] | 291 | new_contents->Init(params); |
[email protected] | d1198fd | 2012-08-13 22:50:19 | [diff] [blame] | 292 | return new_contents; |
[email protected] | a81343d23 | 2011-12-27 07:39:20 | [diff] [blame] | 293 | } |
[email protected] | 746d305 | 2012-05-22 15:15:47 | [diff] [blame] | 294 | |
benwells | 5e7260d | 2017-03-20 23:36:33 | [diff] [blame] | 295 | void WebContentsImpl::FriendWrapper::AddCreatedCallbackForTesting( |
nick | f9acfbe | 2014-12-23 19:12:37 | [diff] [blame] | 296 | const CreatedCallback& callback) { |
[email protected] | cbb1ef59 | 2013-06-05 19:49:46 | [diff] [blame] | 297 | g_created_callbacks.Get().push_back(callback); |
| 298 | } |
| 299 | |
benwells | 5e7260d | 2017-03-20 23:36:33 | [diff] [blame] | 300 | void WebContentsImpl::FriendWrapper::RemoveCreatedCallbackForTesting( |
nick | f9acfbe | 2014-12-23 19:12:37 | [diff] [blame] | 301 | const CreatedCallback& callback) { |
[email protected] | cbb1ef59 | 2013-06-05 19:49:46 | [diff] [blame] | 302 | for (size_t i = 0; i < g_created_callbacks.Get().size(); ++i) { |
| 303 | if (g_created_callbacks.Get().at(i).Equals(callback)) { |
| 304 | g_created_callbacks.Get().erase(g_created_callbacks.Get().begin() + i); |
| 305 | return; |
| 306 | } |
| 307 | } |
| 308 | } |
| 309 | |
avi | df38c95 | 2015-10-27 13:45:13 | [diff] [blame] | 310 | WebContents* WebContents::FromRenderViewHost(RenderViewHost* rvh) { |
| 311 | if (!rvh) |
| 312 | return nullptr; |
[email protected] | 746d305 | 2012-05-22 15:15:47 | [diff] [blame] | 313 | return rvh->GetDelegate()->GetAsWebContents(); |
| 314 | } |
| 315 | |
[email protected] | a86c0e96 | 2013-12-17 17:10:39 | [diff] [blame] | 316 | WebContents* WebContents::FromRenderFrameHost(RenderFrameHost* rfh) { |
avi | df38c95 | 2015-10-27 13:45:13 | [diff] [blame] | 317 | if (!rfh) |
| 318 | return nullptr; |
| 319 | return static_cast<RenderFrameHostImpl*>(rfh)->delegate()->GetAsWebContents(); |
[email protected] | a86c0e96 | 2013-12-17 17:10:39 | [diff] [blame] | 320 | } |
| 321 | |
ananta | 4b7467a5 | 2016-09-23 01:42:38 | [diff] [blame] | 322 | WebContents* WebContents::FromFrameTreeNodeId(int frame_tree_node_id) { |
| 323 | FrameTreeNode* frame_tree_node = |
| 324 | FrameTreeNode::GloballyFindByID(frame_tree_node_id); |
ananta | b8cfa3b | 2016-10-14 22:43:19 | [diff] [blame] | 325 | if (!frame_tree_node) |
| 326 | return nullptr; |
jam | 8c4edd0 | 2017-05-06 18:50:33 | [diff] [blame] | 327 | return WebContentsImpl::FromFrameTreeNode(frame_tree_node); |
ananta | 4b7467a5 | 2016-09-23 01:42:38 | [diff] [blame] | 328 | } |
| 329 | |
leon.han | 552e9de | 2017-02-09 14:37:30 | [diff] [blame] | 330 | void WebContents::SetScreenOrientationDelegate( |
| 331 | ScreenOrientationDelegate* delegate) { |
| 332 | ScreenOrientationProvider::SetDelegate(delegate); |
| 333 | } |
| 334 | |
[email protected] | 7fff43e | 2013-05-21 20:21:10 | [diff] [blame] | 335 | // WebContentsImpl::DestructionObserver ---------------------------------------- |
| 336 | |
| 337 | class WebContentsImpl::DestructionObserver : public WebContentsObserver { |
| 338 | public: |
| 339 | DestructionObserver(WebContentsImpl* owner, WebContents* watched_contents) |
| 340 | : WebContentsObserver(watched_contents), |
| 341 | owner_(owner) { |
| 342 | } |
| 343 | |
| 344 | // WebContentsObserver: |
dcheng | c2282aa | 2014-10-21 12:07:58 | [diff] [blame] | 345 | void WebContentsDestroyed() override { |
[email protected] | 12a4683 | 2014-05-09 13:35:58 | [diff] [blame] | 346 | owner_->OnWebContentsDestroyed( |
| 347 | static_cast<WebContentsImpl*>(web_contents())); |
[email protected] | 7fff43e | 2013-05-21 20:21:10 | [diff] [blame] | 348 | } |
| 349 | |
| 350 | private: |
| 351 | WebContentsImpl* owner_; |
| 352 | |
| 353 | DISALLOW_COPY_AND_ASSIGN(DestructionObserver); |
| 354 | }; |
| 355 | |
Joel Hockey | 85b379d | 2017-12-11 10:42:13 | [diff] [blame] | 356 | // WebContentsImpl::ColorChooser ---------------------------------------------- |
Joel Hockey | 163835a | 2017-12-20 11:51:57 | [diff] [blame] | 357 | class WebContentsImpl::ColorChooser : public blink::mojom::ColorChooser { |
Joel Hockey | 85b379d | 2017-12-11 10:42:13 | [diff] [blame] | 358 | public: |
| 359 | ColorChooser(content::ColorChooser* chooser, |
Joel Hockey | 163835a | 2017-12-20 11:51:57 | [diff] [blame] | 360 | blink::mojom::ColorChooserRequest request, |
| 361 | blink::mojom::ColorChooserClientPtr client) |
Joel Hockey | 85b379d | 2017-12-11 10:42:13 | [diff] [blame] | 362 | : chooser_(chooser), |
| 363 | binding_(this, std::move(request)), |
| 364 | client_(std::move(client)) { |
| 365 | binding_.set_connection_error_handler( |
| 366 | base::BindOnce([](content::ColorChooser* chooser) { chooser->End(); }, |
| 367 | base::Unretained(chooser))); |
| 368 | } |
[email protected] | 8ed1647 | 2014-04-11 19:02:48 | [diff] [blame] | 369 | |
Joel Hockey | 85b379d | 2017-12-11 10:42:13 | [diff] [blame] | 370 | ~ColorChooser() override { chooser_->End(); } |
[email protected] | 8ed1647 | 2014-04-11 19:02:48 | [diff] [blame] | 371 | |
Joel Hockey | 85b379d | 2017-12-11 10:42:13 | [diff] [blame] | 372 | void SetSelectedColor(SkColor color) override { |
| 373 | chooser_->SetSelectedColor(color); |
| 374 | } |
| 375 | |
| 376 | void DidChooseColorInColorChooser(SkColor color) { |
| 377 | client_->DidChooseColor(color); |
| 378 | } |
| 379 | |
| 380 | private: |
| 381 | // Color chooser that was opened by this tab. |
| 382 | std::unique_ptr<content::ColorChooser> chooser_; |
| 383 | |
| 384 | // mojo bindings. |
Joel Hockey | 163835a | 2017-12-20 11:51:57 | [diff] [blame] | 385 | mojo::Binding<blink::mojom::ColorChooser> binding_; |
Joel Hockey | 85b379d | 2017-12-11 10:42:13 | [diff] [blame] | 386 | |
| 387 | // mojo renderer client. |
Joel Hockey | 163835a | 2017-12-20 11:51:57 | [diff] [blame] | 388 | blink::mojom::ColorChooserClientPtr client_; |
Joel Hockey | 85b379d | 2017-12-11 10:42:13 | [diff] [blame] | 389 | }; |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 390 | |
lazyboy | 6ec48b2a | 2015-06-29 15:18:14 | [diff] [blame] | 391 | // WebContentsImpl::WebContentsTreeNode ---------------------------------------- |
lfg | 60123369 | 2017-03-06 22:45:44 | [diff] [blame] | 392 | WebContentsImpl::WebContentsTreeNode::WebContentsTreeNode( |
| 393 | WebContentsImpl* current_web_contents) |
| 394 | : current_web_contents_(current_web_contents), |
| 395 | outer_web_contents_(nullptr), |
lazyboy | 6ec48b2a | 2015-06-29 15:18:14 | [diff] [blame] | 396 | outer_contents_frame_tree_node_id_( |
avallee | 0206f78 | 2016-07-28 18:55:33 | [diff] [blame] | 397 | FrameTreeNode::kFrameTreeNodeInvalidId), |
lfg | 60123369 | 2017-03-06 22:45:44 | [diff] [blame] | 398 | focused_web_contents_(current_web_contents) {} |
lazyboy | 6ec48b2a | 2015-06-29 15:18:14 | [diff] [blame] | 399 | |
| 400 | WebContentsImpl::WebContentsTreeNode::~WebContentsTreeNode() { |
lfg | a3e2bdc | 2017-03-07 20:44:01 | [diff] [blame] | 401 | if (OuterContentsFrameTreeNode()) |
| 402 | OuterContentsFrameTreeNode()->RemoveObserver(this); |
paulmeyer | feafc2d | 2017-04-25 21:46:40 | [diff] [blame] | 403 | |
| 404 | if (outer_web_contents_) |
| 405 | outer_web_contents_->node_.DetachInnerWebContents(current_web_contents_); |
lazyboy | 6ec48b2a | 2015-06-29 15:18:14 | [diff] [blame] | 406 | } |
| 407 | |
| 408 | void WebContentsImpl::WebContentsTreeNode::ConnectToOuterWebContents( |
| 409 | WebContentsImpl* outer_web_contents, |
| 410 | RenderFrameHostImpl* outer_contents_frame) { |
lfg | 60123369 | 2017-03-06 22:45:44 | [diff] [blame] | 411 | focused_web_contents_ = nullptr; |
lazyboy | 6ec48b2a | 2015-06-29 15:18:14 | [diff] [blame] | 412 | outer_web_contents_ = outer_web_contents; |
| 413 | outer_contents_frame_tree_node_id_ = |
| 414 | outer_contents_frame->frame_tree_node()->frame_tree_node_id(); |
| 415 | |
paulmeyer | feafc2d | 2017-04-25 21:46:40 | [diff] [blame] | 416 | outer_web_contents_->node_.AttachInnerWebContents(current_web_contents_); |
lfg | a3e2bdc | 2017-03-07 20:44:01 | [diff] [blame] | 417 | outer_contents_frame->frame_tree_node()->AddObserver(this); |
lfg | 60123369 | 2017-03-06 22:45:44 | [diff] [blame] | 418 | } |
lazyboy | 6ec48b2a | 2015-06-29 15:18:14 | [diff] [blame] | 419 | |
paulmeyer | feafc2d | 2017-04-25 21:46:40 | [diff] [blame] | 420 | void WebContentsImpl::WebContentsTreeNode::AttachInnerWebContents( |
| 421 | WebContentsImpl* inner_web_contents) { |
| 422 | inner_web_contents_.push_back(inner_web_contents); |
| 423 | } |
| 424 | |
| 425 | void WebContentsImpl::WebContentsTreeNode::DetachInnerWebContents( |
| 426 | WebContentsImpl* inner_web_contents) { |
| 427 | DCHECK(std::find(inner_web_contents_.begin(), inner_web_contents_.end(), |
| 428 | inner_web_contents) != inner_web_contents_.end()); |
| 429 | inner_web_contents_.erase( |
| 430 | std::remove(inner_web_contents_.begin(), inner_web_contents_.end(), |
| 431 | inner_web_contents), |
| 432 | inner_web_contents_.end()); |
| 433 | } |
| 434 | |
lfg | a3e2bdc | 2017-03-07 20:44:01 | [diff] [blame] | 435 | FrameTreeNode* |
| 436 | WebContentsImpl::WebContentsTreeNode::OuterContentsFrameTreeNode() const { |
| 437 | return FrameTreeNode::GloballyFindByID(outer_contents_frame_tree_node_id_); |
lfg | 60123369 | 2017-03-06 22:45:44 | [diff] [blame] | 438 | } |
| 439 | |
lfg | a3e2bdc | 2017-03-07 20:44:01 | [diff] [blame] | 440 | void WebContentsImpl::WebContentsTreeNode::OnFrameTreeNodeDestroyed( |
| 441 | FrameTreeNode* node) { |
| 442 | DCHECK_EQ(outer_contents_frame_tree_node_id_, node->frame_tree_node_id()) |
| 443 | << "WebContentsTreeNode should only receive notifications for the " |
| 444 | "FrameTreeNode in its outer WebContents that hosts it."; |
| 445 | delete current_web_contents_; // deletes |this| too. |
lazyboy | 6ec48b2a | 2015-06-29 15:18:14 | [diff] [blame] | 446 | } |
| 447 | |
avallee | 0206f78 | 2016-07-28 18:55:33 | [diff] [blame] | 448 | void WebContentsImpl::WebContentsTreeNode::SetFocusedWebContents( |
| 449 | WebContentsImpl* web_contents) { |
| 450 | DCHECK(!outer_web_contents()) |
| 451 | << "Only the outermost WebContents tracks focus."; |
| 452 | focused_web_contents_ = web_contents; |
| 453 | } |
| 454 | |
paulmeyer | feafc2d | 2017-04-25 21:46:40 | [diff] [blame] | 455 | WebContentsImpl* |
| 456 | WebContentsImpl::WebContentsTreeNode::GetInnerWebContentsInFrame( |
| 457 | const FrameTreeNode* frame) { |
| 458 | auto ftn_id = frame->frame_tree_node_id(); |
| 459 | for (WebContentsImpl* contents : inner_web_contents_) { |
| 460 | if (contents->node_.outer_contents_frame_tree_node_id() == ftn_id) { |
| 461 | return contents; |
| 462 | } |
| 463 | } |
| 464 | return nullptr; |
| 465 | } |
| 466 | |
| 467 | const std::vector<WebContentsImpl*>& |
| 468 | WebContentsImpl::WebContentsTreeNode::inner_web_contents() const { |
| 469 | return inner_web_contents_; |
| 470 | } |
| 471 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 472 | // WebContentsImpl ------------------------------------------------------------- |
[email protected] | 420ae01 | 2009-04-24 05:16:32 | [diff] [blame] | 473 | |
alexmos | e201c7cd | 2015-06-10 17:14:21 | [diff] [blame] | 474 | WebContentsImpl::WebContentsImpl(BrowserContext* browser_context) |
Ivan Kotenkov | 2c0d2bb3 | 2017-11-01 15:41:28 | [diff] [blame] | 475 | : delegate_(nullptr), |
[email protected] | 69e797f | 2013-04-30 01:10:22 | [diff] [blame] | 476 | controller_(this, browser_context), |
Ivan Kotenkov | 2c0d2bb3 | 2017-11-01 15:41:28 | [diff] [blame] | 477 | render_view_host_delegate_view_(nullptr), |
alexmos | e201c7cd | 2015-06-10 17:14:21 | [diff] [blame] | 478 | created_with_opener_(false), |
[email protected] | 6ea6bdf | 2013-12-06 13:35:01 | [diff] [blame] | 479 | frame_tree_(new NavigatorImpl(&controller_, this), |
blundell | c57b93f | 2014-10-29 13:19:57 | [diff] [blame] | 480 | this, |
| 481 | this, |
| 482 | this, |
| 483 | this), |
lfg | 60123369 | 2017-03-06 22:45:44 | [diff] [blame] | 484 | node_(this), |
[email protected] | 6dfed69 | 2014-05-22 04:18:03 | [diff] [blame] | 485 | is_load_to_different_document_(false), |
[email protected] | 443b80e | 2010-12-14 00:42:23 | [diff] [blame] | 486 | crashed_status_(base::TERMINATION_STATUS_STILL_RUNNING), |
| 487 | crashed_error_code_(0), |
[email protected] | d5f942ba | 2008-09-26 19:30:34 | [diff] [blame] | 488 | waiting_for_response_(false), |
[email protected] | fcf75d4 | 2013-12-03 20:11:26 | [diff] [blame] | 489 | load_state_(net::LOAD_STATE_IDLE, base::string16()), |
[email protected] | 094e5b2 | 2009-09-25 04:23:56 | [diff] [blame] | 490 | upload_size_(0), |
| 491 | upload_position_(0), |
dfalcantara | e6b7b4675 | 2015-07-10 18:14:16 | [diff] [blame] | 492 | is_resume_pending_(false), |
creis | adca986 | 2017-06-16 19:12:11 | [diff] [blame] | 493 | interstitial_page_(nullptr), |
[email protected] | b4c8401 | 2014-04-28 19:51:10 | [diff] [blame] | 494 | has_accessed_initial_document_(false), |
yusufo | d41c5f9 | 2015-03-06 00:14:28 | [diff] [blame] | 495 | theme_color_(SK_ColorTRANSPARENT), |
| 496 | last_sent_theme_color_(SK_ColorTRANSPARENT), |
peter | 90afaba | 2015-06-01 12:05:29 | [diff] [blame] | 497 | did_first_visually_non_empty_paint_(false), |
[email protected] | 5459798 | 2013-02-06 01:59:55 | [diff] [blame] | 498 | capturer_count_(0), |
[email protected] | fdd61c6 | 2009-04-22 19:22:57 | [diff] [blame] | 499 | is_being_destroyed_(false), |
creis | 97867aa | 2017-02-17 18:39:45 | [diff] [blame] | 500 | is_notifying_observers_(false), |
[email protected] | fdd61c6 | 2009-04-22 19:22:57 | [diff] [blame] | 501 | notify_disconnection_(false), |
Ivan Kotenkov | 2c0d2bb3 | 2017-11-01 15:41:28 | [diff] [blame] | 502 | dialog_manager_(nullptr), |
[email protected] | 7ab1e7d6 | 2009-10-14 23:32:01 | [diff] [blame] | 503 | is_showing_before_unload_dialog_(false), |
gab | 0dccfef | 2015-05-20 18:43:39 | [diff] [blame] | 504 | last_active_time_(base::TimeTicks::Now()), |
[email protected] | ebf40a7 | 2010-07-22 01:46:38 | [diff] [blame] | 505 | closed_by_user_gesture_(false), |
[email protected] | 8ff00d7 | 2012-10-23 19:12:21 | [diff] [blame] | 506 | minimum_zoom_percent_(static_cast<int>(kMinimumZoomFactor * 100)), |
| 507 | maximum_zoom_percent_(static_cast<int>(kMaximumZoomFactor * 100)), |
w.shackleton | 49bcd39 | 2016-01-06 17:38:22 | [diff] [blame] | 508 | zoom_scroll_remainder_(0), |
alexmos | c9e76ec | 2016-05-16 22:59:37 | [diff] [blame] | 509 | fullscreen_widget_process_id_(ChildProcessHost::kInvalidUniqueID), |
[email protected] | 5dcaf8e | 2013-12-28 01:31:42 | [diff] [blame] | 510 | fullscreen_widget_routing_id_(MSG_ROUTING_NONE), |
[email protected] | 0b43199 | 2014-06-24 00:08:03 | [diff] [blame] | 511 | fullscreen_widget_had_focus_at_shutdown_(false), |
[email protected] | 87de04b0 | 2014-04-08 22:14:49 | [diff] [blame] | 512 | is_subframe_(false), |
[email protected] | 34ff1cfc | 2014-08-20 06:16:05 | [diff] [blame] | 513 | force_disable_overscroll_content_(false), |
[email protected] | 9564021 | 2014-07-26 18:14:30 | [diff] [blame] | 514 | last_dialog_suppressed_(false), |
waffles | 1c12bf40 | 2016-02-10 17:45:48 | [diff] [blame] | 515 | accessibility_mode_( |
| 516 | BrowserAccessibilityStateImpl::GetInstance()->accessibility_mode()), |
avayvod | cc85bbd | 2015-08-28 19:11:15 | [diff] [blame] | 517 | audio_stream_monitor_(this), |
ortuno | df4d798 | 2016-04-08 02:33:35 | [diff] [blame] | 518 | bluetooth_connected_device_count_(0), |
Guido Urdaneta | f400800 | 2018-05-03 10:43:04 | [diff] [blame] | 519 | media_device_group_id_salt_base_( |
| 520 | BrowserContext::CreateRandomMediaDeviceIDSalt()), |
mcnee | 336ea2c | 2017-05-23 22:50:59 | [diff] [blame] | 521 | #if !defined(OS_ANDROID) |
mcnee | 432e47d | 2015-11-09 19:37:46 | [diff] [blame] | 522 | page_scale_factor_is_one_(true), |
mcnee | 336ea2c | 2017-05-23 22:50:59 | [diff] [blame] | 523 | #endif // !defined(OS_ANDROID) |
qinmin | 72e8bd0 | 2016-10-21 19:35:37 | [diff] [blame] | 524 | is_overlay_content_(false), |
ekaramad | f6750aa | 2017-06-06 18:29:42 | [diff] [blame] | 525 | showing_context_menu_(false), |
pkotwicz | 75ca8ffd | 2016-02-16 23:10:19 | [diff] [blame] | 526 | loading_weak_factory_(this), |
| 527 | weak_factory_(this) { |
[email protected] | 9b159a5 | 2013-10-03 17:24:55 | [diff] [blame] | 528 | frame_tree_.SetFrameRemoveListener( |
| 529 | base::Bind(&WebContentsImpl::OnFrameRemoved, |
| 530 | base::Unretained(this))); |
dalecurtis | c85ed63 | 2016-01-13 00:22:46 | [diff] [blame] | 531 | #if defined(OS_ANDROID) |
| 532 | media_web_contents_observer_.reset(new MediaWebContentsObserverAndroid(this)); |
| 533 | #else |
qinmin | 58567c8 | 2015-01-07 21:00:20 | [diff] [blame] | 534 | media_web_contents_observer_.reset(new MediaWebContentsObserver(this)); |
dalecurtis | c85ed63 | 2016-01-13 00:22:46 | [diff] [blame] | 535 | #endif |
brettw | 4b46108 | 2016-11-19 18:55:16 | [diff] [blame] | 536 | #if BUILDFLAG(ENABLE_PLUGINS) |
zqzhang | 181047e6 | 2016-07-01 13:37:17 | [diff] [blame] | 537 | pepper_playback_observer_.reset(new PepperPlaybackObserver(this)); |
| 538 | #endif |
blundell | e75a8f9 | 2017-03-27 08:11:17 | [diff] [blame] | 539 | |
csharrison | a2280cd | 2016-02-03 23:21:15 | [diff] [blame] | 540 | loader_io_thread_notifier_.reset(new LoaderIOThreadNotifier(this)); |
mcnee | 336ea2c | 2017-05-23 22:50:59 | [diff] [blame] | 541 | #if !defined(OS_ANDROID) |
scottmg | 276753cf | 2016-10-27 18:25:22 | [diff] [blame] | 542 | host_zoom_map_observer_.reset(new HostZoomMapObserver(this)); |
mcnee | 336ea2c | 2017-05-23 22:50:59 | [diff] [blame] | 543 | #endif // !defined(OS_ANDROID) |
Joel Hockey | 85b379d | 2017-12-11 10:42:13 | [diff] [blame] | 544 | |
| 545 | registry_.AddInterface(base::BindRepeating( |
| 546 | &WebContentsImpl::OnColorChooserFactoryRequest, base::Unretained(this))); |
[email protected] | 332af773 | 2009-03-11 13:21:35 | [diff] [blame] | 547 | } |
initial.commit | 09911bf | 2008-07-26 23:55:29 | [diff] [blame] | 548 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 549 | WebContentsImpl::~WebContentsImpl() { |
creis | ba91ba8 | 2017-05-12 22:56:19 | [diff] [blame] | 550 | // Imperfect sanity check against double free, given some crashes unexpectedly |
| 551 | // observed in the wild. |
| 552 | CHECK(!is_being_destroyed_); |
| 553 | |
| 554 | // We generally keep track of is_being_destroyed_ to let other features know |
| 555 | // to avoid certain actions during destruction. |
[email protected] | 420ae01 | 2009-04-24 05:16:32 | [diff] [blame] | 556 | is_being_destroyed_ = true; |
| 557 | |
creis | 97867aa | 2017-02-17 18:39:45 | [diff] [blame] | 558 | // A WebContents should never be deleted while it is notifying observers, |
creis | ba91ba8 | 2017-05-12 22:56:19 | [diff] [blame] | 559 | // since this will lead to a use-after-free as it continues to notify later |
creis | 97867aa | 2017-02-17 18:39:45 | [diff] [blame] | 560 | // observers. |
| 561 | CHECK(!is_notifying_observers_); |
| 562 | |
kenrb | 2a565f8 | 2015-09-02 20:24:59 | [diff] [blame] | 563 | rwh_input_event_router_.reset(); |
| 564 | |
rockot | f62002a | 2016-09-15 00:08:59 | [diff] [blame] | 565 | for (auto& entry : binding_sets_) |
| 566 | entry.second->CloseAllBindings(); |
| 567 | |
avallee | 0206f78 | 2016-07-28 18:55:33 | [diff] [blame] | 568 | WebContentsImpl* outermost = GetOutermostWebContents(); |
avallee | 9993fca | 2016-11-17 06:16:50 | [diff] [blame] | 569 | if (this != outermost && ContainsOrIsFocusedWebContents()) { |
avallee | 0206f78 | 2016-07-28 18:55:33 | [diff] [blame] | 570 | // If the current WebContents is in focus, unset it. |
avallee | 9993fca | 2016-11-17 06:16:50 | [diff] [blame] | 571 | outermost->SetAsFocusedWebContentsIfNecessary(); |
avallee | 0206f78 | 2016-07-28 18:55:33 | [diff] [blame] | 572 | } |
| 573 | |
Nick Carter | d73635b | 2018-03-13 18:31:41 | [diff] [blame] | 574 | if (mouse_lock_widget_) |
| 575 | mouse_lock_widget_->RejectMouseLockOrUnlockIfNecessary(); |
| 576 | |
dcheng | 72be33c | 2016-01-21 04:11:31 | [diff] [blame] | 577 | for (FrameTreeNode* node : frame_tree_.Nodes()) { |
| 578 | // Delete all RFHs pending shutdown, which will lead the corresponding RVHs |
| 579 | // to be shutdown and be deleted as well. |
dcheng | 57e39e2 | 2016-01-21 00:25:38 | [diff] [blame] | 580 | node->render_manager()->ClearRFHsPendingShutdown(); |
dcheng | 57e39e2 | 2016-01-21 00:25:38 | [diff] [blame] | 581 | node->render_manager()->ClearWebUIInstances(); |
dcheng | 72be33c | 2016-01-21 04:11:31 | [diff] [blame] | 582 | } |
carlosk | 35f35af | 2015-12-01 10:55:40 | [diff] [blame] | 583 | |
dcheng | 57e39e2 | 2016-01-21 00:25:38 | [diff] [blame] | 584 | for (RenderWidgetHostImpl* widget : created_widgets_) |
| 585 | widget->DetachDelegate(); |
[email protected] | b24b68a | 2012-09-24 21:57:26 | [diff] [blame] | 586 | created_widgets_.clear(); |
| 587 | |
[email protected] | 3ab9cb8 | 2011-06-03 18:02:07 | [diff] [blame] | 588 | // Clear out any JavaScript state. |
avi | 5d3b869 | 2016-10-12 22:00:46 | [diff] [blame] | 589 | if (dialog_manager_) { |
avi | 6879fcf | 2017-01-21 05:27:53 | [diff] [blame] | 590 | dialog_manager_->CancelDialogs(this, /*reset_state=*/true); |
avi | 5d3b869 | 2016-10-12 22:00:46 | [diff] [blame] | 591 | } |
[email protected] | 3ab9cb8 | 2011-06-03 18:02:07 | [diff] [blame] | 592 | |
Joel Hockey | 85b379d | 2017-12-11 10:42:13 | [diff] [blame] | 593 | color_chooser_.reset(); |
[email protected] | da854376 | 2012-03-20 08:52:20 | [diff] [blame] | 594 | |
[email protected] | 420ae01 | 2009-04-24 05:16:32 | [diff] [blame] | 595 | NotifyDisconnected(); |
[email protected] | 420ae01 | 2009-04-24 05:16:32 | [diff] [blame] | 596 | |
[email protected] | ca13a44 | 2012-04-17 14:00:12 | [diff] [blame] | 597 | // Notify any observer that have a reference on this WebContents. |
[email protected] | 8ff00d7 | 2012-10-23 19:12:21 | [diff] [blame] | 598 | NotificationService::current()->Notify( |
| 599 | NOTIFICATION_WEB_CONTENTS_DESTROYED, |
| 600 | Source<WebContents>(this), |
| 601 | NotificationService::NoDetails()); |
[email protected] | 420ae01 | 2009-04-24 05:16:32 | [diff] [blame] | 602 | |
[email protected] | df0c843f | 2014-05-23 20:37:23 | [diff] [blame] | 603 | // Destroy all frame tree nodes except for the root; this notifies observers. |
nick | 53d5cbf | 2015-04-23 22:50:14 | [diff] [blame] | 604 | frame_tree_.root()->ResetForNewProcess(); |
[email protected] | df0c843f | 2014-05-23 20:37:23 | [diff] [blame] | 605 | GetRenderManager()->ResetProxyHosts(); |
[email protected] | c06c58c | 2014-03-12 20:31:59 | [diff] [blame] | 606 | |
clamy | 0e11988 | 2015-07-31 16:12:33 | [diff] [blame] | 607 | // Manually call the observer methods for the root frame tree node. It is |
| 608 | // necessary to manually delete all objects tracking navigations |
| 609 | // (NavigationHandle, NavigationRequest) for observers to be properly |
| 610 | // notified of these navigations stopping before the WebContents is |
| 611 | // destroyed. |
[email protected] | df0c843f | 2014-05-23 20:37:23 | [diff] [blame] | 612 | RenderFrameHostManager* root = GetRenderManager(); |
nasko | b21fe487 | 2015-02-24 14:15:56 | [diff] [blame] | 613 | |
nasko | b21fe487 | 2015-02-24 14:15:56 | [diff] [blame] | 614 | root->current_frame_host()->SetRenderFrameCreated(false); |
clamy | fc3850d | 2018-02-23 14:35:28 | [diff] [blame] | 615 | root->current_frame_host()->ResetNavigationRequests(); |
clamy | 0e11988 | 2015-07-31 16:12:33 | [diff] [blame] | 616 | |
Arthur Hemery | c338017 | 2018-01-22 14:00:17 | [diff] [blame] | 617 | // Do not update state as the WebContents is being destroyed. |
| 618 | frame_tree_.root()->ResetNavigationRequest(true, true); |
| 619 | if (root->speculative_frame_host()) { |
| 620 | root->speculative_frame_host()->SetRenderFrameCreated(false); |
clamy | fc3850d | 2018-02-23 14:35:28 | [diff] [blame] | 621 | root->speculative_frame_host()->ResetNavigationRequests(); |
clamy | 0e11988 | 2015-07-31 16:12:33 | [diff] [blame] | 622 | } |
[email protected] | f273ee5 | 2013-10-18 16:05:27 | [diff] [blame] | 623 | |
brettw | 4b46108 | 2016-11-19 18:55:16 | [diff] [blame] | 624 | #if BUILDFLAG(ENABLE_PLUGINS) |
zqzhang | 181047e6 | 2016-07-01 13:37:17 | [diff] [blame] | 625 | // Call this before WebContentsDestroyed() is broadcasted since |
| 626 | // AudioFocusManager will be destroyed after that. |
| 627 | pepper_playback_observer_.reset(); |
| 628 | #endif // defined(ENABLED_PLUGINS) |
| 629 | |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 630 | for (auto& observer : observers_) |
| 631 | observer.FrameDeleted(root->current_frame_host()); |
nasko | a83483fb | 2015-02-27 16:57:10 | [diff] [blame] | 632 | |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 633 | for (auto& observer : observers_) |
| 634 | observer.RenderViewDeleted(root->current_host()); |
[email protected] | f273ee5 | 2013-10-18 16:05:27 | [diff] [blame] | 635 | |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 636 | for (auto& observer : observers_) |
| 637 | observer.WebContentsDestroyed(); |
[email protected] | 12a4683 | 2014-05-09 13:35:58 | [diff] [blame] | 638 | |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 639 | for (auto& observer : observers_) |
| 640 | observer.ResetWebContents(); |
[email protected] | 232a581 | 2011-03-04 22:42:08 | [diff] [blame] | 641 | |
Ivan Kotenkov | 2c0d2bb3 | 2017-11-01 15:41:28 | [diff] [blame] | 642 | SetDelegate(nullptr); |
[email protected] | b5a1d11c | 2011-02-17 03:09:42 | [diff] [blame] | 643 | } |
| 644 | |
erikchen | 50735fd | 2018-05-05 15:08:33 | [diff] [blame^] | 645 | std::unique_ptr<WebContentsImpl> WebContentsImpl::CreateWithOpener( |
[email protected] | 54944cde | 2012-12-09 09:24:59 | [diff] [blame] | 646 | const WebContents::CreateParams& params, |
Ian Clelland | 5cbaaf8 | 2017-11-27 22:00:03 | [diff] [blame] | 647 | RenderFrameHostImpl* opener_rfh) { |
[email protected] | e11f0e9 | 2013-06-12 15:12:03 | [diff] [blame] | 648 | TRACE_EVENT0("browser", "WebContentsImpl::CreateWithOpener"); |
Ian Clelland | 5cbaaf8 | 2017-11-27 22:00:03 | [diff] [blame] | 649 | FrameTreeNode* opener = nullptr; |
| 650 | if (opener_rfh) |
| 651 | opener = opener_rfh->frame_tree_node(); |
erikchen | 50735fd | 2018-05-05 15:08:33 | [diff] [blame^] | 652 | std::unique_ptr<WebContentsImpl> new_contents( |
| 653 | new WebContentsImpl(params.browser_context)); |
lukasza | 6f8ac62 | 2017-06-06 03:10:20 | [diff] [blame] | 654 | new_contents->SetOpenerForNewContents(opener, params.opener_suppressed); |
alexmos | e201c7cd | 2015-06-10 17:14:21 | [diff] [blame] | 655 | |
alexmos | aedfc6f | 2016-01-21 23:57:38 | [diff] [blame] | 656 | // If the opener is sandboxed, a new popup must inherit the opener's sandbox |
| 657 | // flags, and these flags take effect immediately. An exception is if the |
| 658 | // opener's sandbox flags lack the PropagatesToAuxiliaryBrowsingContexts |
| 659 | // bit (which is controlled by the "allow-popups-to-escape-sandbox" token). |
| 660 | // See https://html.spec.whatwg.org/#attr-iframe-sandbox. |
lukasza | 6f8ac62 | 2017-06-06 03:10:20 | [diff] [blame] | 661 | FrameTreeNode* new_root = new_contents->GetFrameTree()->root(); |
alexmos | aedfc6f | 2016-01-21 23:57:38 | [diff] [blame] | 662 | if (opener) { |
Ian Clelland | 5cbaaf8 | 2017-11-27 22:00:03 | [diff] [blame] | 663 | blink::WebSandboxFlags opener_flags = opener_rfh->active_sandbox_flags(); |
alexmos | aedfc6f | 2016-01-21 23:57:38 | [diff] [blame] | 664 | const blink::WebSandboxFlags inherit_flag = |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 665 | blink::WebSandboxFlags::kPropagatesToAuxiliaryBrowsingContexts; |
alexmos | aedfc6f | 2016-01-21 23:57:38 | [diff] [blame] | 666 | if ((opener_flags & inherit_flag) == inherit_flag) { |
Ian Clelland | cdc4f31 | 2017-10-13 22:24:12 | [diff] [blame] | 667 | // TODO(iclelland): Transfer correct container policy from opener as well. |
| 668 | // https://crbug.com/774620 |
| 669 | new_root->SetPendingFramePolicy({opener_flags, {}}); |
alexmos | aedfc6f | 2016-01-21 23:57:38 | [diff] [blame] | 670 | } |
| 671 | } |
| 672 | |
mark a. foltz | ef394fce | 2017-10-21 09:11:02 | [diff] [blame] | 673 | // Apply starting sandbox flags. |
Luna Lu | c3fdacdf | 2017-11-08 04:48:53 | [diff] [blame] | 674 | blink::FramePolicy frame_policy(new_root->pending_frame_policy()); |
mark a. foltz | ef394fce | 2017-10-21 09:11:02 | [diff] [blame] | 675 | frame_policy.sandbox_flags |= params.starting_sandbox_flags; |
| 676 | new_root->SetPendingFramePolicy(frame_policy); |
| 677 | new_root->CommitPendingFramePolicy(); |
| 678 | |
alexmos | e201c7cd | 2015-06-10 17:14:21 | [diff] [blame] | 679 | // This may be true even when opener is null, such as when opening blocked |
| 680 | // popups. |
alexmos | 090fae8e | 2015-05-28 17:09:28 | [diff] [blame] | 681 | if (params.created_with_opener) |
| 682 | new_contents->created_with_opener_ = true; |
| 683 | |
[email protected] | 4858e43 | 2014-06-23 18:14:17 | [diff] [blame] | 684 | if (params.guest_delegate) { |
[email protected] | 83100cd | 2014-05-10 11:50:06 | [diff] [blame] | 685 | // This makes |new_contents| act as a guest. |
| 686 | // For more info, see comment above class BrowserPluginGuest. |
erikchen | 50735fd | 2018-05-05 15:08:33 | [diff] [blame^] | 687 | BrowserPluginGuest::Create(new_contents.get(), params.guest_delegate); |
[email protected] | 83100cd | 2014-05-10 11:50:06 | [diff] [blame] | 688 | // We are instantiating a WebContents for browser plugin. Set its subframe |
| 689 | // bit to true. |
| 690 | new_contents->is_subframe_ = true; |
| 691 | } |
mark a. foltz | ef394fce | 2017-10-21 09:11:02 | [diff] [blame] | 692 | |
[email protected] | 54944cde | 2012-12-09 09:24:59 | [diff] [blame] | 693 | new_contents->Init(params); |
[email protected] | d1198fd | 2012-08-13 22:50:19 | [diff] [blame] | 694 | return new_contents; |
| 695 | } |
| 696 | |
[email protected] | 9564021 | 2014-07-26 18:14:30 | [diff] [blame] | 697 | // static |
| 698 | std::vector<WebContentsImpl*> WebContentsImpl::GetAllWebContents() { |
| 699 | std::vector<WebContentsImpl*> result; |
dcheng | 5971627 | 2016-04-09 05:19:08 | [diff] [blame] | 700 | std::unique_ptr<RenderWidgetHostIterator> widgets( |
[email protected] | 9564021 | 2014-07-26 18:14:30 | [diff] [blame] | 701 | RenderWidgetHostImpl::GetRenderWidgetHosts()); |
[email protected] | 9564021 | 2014-07-26 18:14:30 | [diff] [blame] | 702 | while (RenderWidgetHost* rwh = widgets->GetNextHost()) { |
[email protected] | 9564021 | 2014-07-26 18:14:30 | [diff] [blame] | 703 | RenderViewHost* rvh = RenderViewHost::From(rwh); |
| 704 | if (!rvh) |
| 705 | continue; |
| 706 | WebContents* web_contents = WebContents::FromRenderViewHost(rvh); |
| 707 | if (!web_contents) |
| 708 | continue; |
avi | df38c95 | 2015-10-27 13:45:13 | [diff] [blame] | 709 | if (web_contents->GetRenderViewHost() != rvh) |
| 710 | continue; |
| 711 | // Because a WebContents can only have one current RVH at a time, there will |
| 712 | // be no duplicate WebContents here. |
| 713 | result.push_back(static_cast<WebContentsImpl*>(web_contents)); |
[email protected] | 9564021 | 2014-07-26 18:14:30 | [diff] [blame] | 714 | } |
| 715 | return result; |
| 716 | } |
| 717 | |
clamy | a16aa817 | 2015-05-26 13:07:25 | [diff] [blame] | 718 | // static |
| 719 | WebContentsImpl* WebContentsImpl::FromFrameTreeNode( |
paulmeyer | feafc2d | 2017-04-25 21:46:40 | [diff] [blame] | 720 | const FrameTreeNode* frame_tree_node) { |
clamy | a16aa817 | 2015-05-26 13:07:25 | [diff] [blame] | 721 | return static_cast<WebContentsImpl*>( |
| 722 | WebContents::FromRenderFrameHost(frame_tree_node->current_frame_host())); |
| 723 | } |
| 724 | |
clamy | 0d32d6d | 2015-11-24 11:16:26 | [diff] [blame] | 725 | // static |
| 726 | WebContents* WebContentsImpl::FromRenderFrameHostID(int render_process_host_id, |
| 727 | int render_frame_host_id) { |
| 728 | DCHECK_CURRENTLY_ON(BrowserThread::UI); |
| 729 | RenderFrameHost* render_frame_host = |
| 730 | RenderFrameHost::FromID(render_process_host_id, render_frame_host_id); |
| 731 | if (!render_frame_host) |
| 732 | return nullptr; |
| 733 | |
| 734 | return WebContents::FromRenderFrameHost(render_frame_host); |
| 735 | } |
| 736 | |
paulmeyer | feafc2d | 2017-04-25 21:46:40 | [diff] [blame] | 737 | // static |
| 738 | WebContentsImpl* WebContentsImpl::FromOuterFrameTreeNode( |
| 739 | const FrameTreeNode* frame_tree_node) { |
| 740 | return WebContentsImpl::FromFrameTreeNode(frame_tree_node) |
| 741 | ->node_.GetInnerWebContentsInFrame(frame_tree_node); |
| 742 | } |
| 743 | |
[email protected] | b0936d2 | 2013-11-28 06:47:36 | [diff] [blame] | 744 | RenderFrameHostManager* WebContentsImpl::GetRenderManagerForTesting() { |
[email protected] | fa944cb8 | 2013-11-15 17:51:21 | [diff] [blame] | 745 | return GetRenderManager(); |
[email protected] | 76518718 | 2012-01-11 23:59:28 | [diff] [blame] | 746 | } |
| 747 | |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 748 | bool WebContentsImpl::OnMessageReceived(RenderViewHostImpl* render_view_host, |
[email protected] | 7bb76189 | 2012-07-20 09:32:47 | [diff] [blame] | 749 | const IPC::Message& message) { |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 750 | for (auto& observer : observers_) { |
Lukasz Anforowicz | 89f2c1b | 2017-08-30 21:36:46 | [diff] [blame] | 751 | // TODO(nick, creis): https://crbug.com/758026: Replace all uses of this |
| 752 | // variant of OnMessageReceived with the version that takes a |
| 753 | // RenderFrameHost, and then delete it. |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 754 | if (observer.OnMessageReceived(message)) |
| 755 | return true; |
[email protected] | 64ffefa | 2014-05-10 12:06:33 | [diff] [blame] | 756 | } |
[email protected] | 403415a | 2011-01-10 18:57:53 | [diff] [blame] | 757 | |
[email protected] | 724159a | 2010-12-30 01:11:18 | [diff] [blame] | 758 | bool handled = true; |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 759 | IPC_BEGIN_MESSAGE_MAP_WITH_PARAM(WebContentsImpl, message, render_view_host) |
| 760 | IPC_MESSAGE_HANDLER(ViewHostMsg_DidFirstVisuallyNonEmptyPaint, |
| 761 | OnFirstVisuallyNonEmptyPaint) |
| 762 | IPC_MESSAGE_HANDLER(ViewHostMsg_GoToEntryAtOffset, OnGoToEntryAtOffset) |
| 763 | IPC_MESSAGE_HANDLER(ViewHostMsg_UpdateZoomLimits, OnUpdateZoomLimits) |
| 764 | IPC_MESSAGE_HANDLER(ViewHostMsg_PageScaleFactorChanged, |
| 765 | OnPageScaleFactorChanged) |
| 766 | IPC_MESSAGE_HANDLER(ViewHostMsg_EnumerateDirectory, OnEnumerateDirectory) |
| 767 | IPC_MESSAGE_HANDLER(ViewHostMsg_AppCacheAccessed, OnAppCacheAccessed) |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 768 | #if BUILDFLAG(ENABLE_PLUGINS) |
| 769 | IPC_MESSAGE_HANDLER(ViewHostMsg_RequestPpapiBrokerPermission, |
| 770 | OnRequestPpapiBrokerPermission) |
| 771 | #endif |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 772 | #if defined(OS_ANDROID) |
| 773 | IPC_MESSAGE_HANDLER(ViewHostMsg_OpenDateTimeDialog, OnOpenDateTimeDialog) |
| 774 | #endif |
| 775 | IPC_MESSAGE_UNHANDLED(handled = false) |
| 776 | IPC_END_MESSAGE_MAP() |
| 777 | |
| 778 | return handled; |
| 779 | } |
| 780 | |
| 781 | bool WebContentsImpl::OnMessageReceived(RenderFrameHostImpl* render_frame_host, |
| 782 | const IPC::Message& message) { |
Lukasz Anforowicz | 0292310 | 2017-10-09 18:11:37 | [diff] [blame] | 783 | { |
| 784 | WebUIImpl* web_ui = render_frame_host->web_ui(); |
| 785 | if (web_ui && web_ui->OnMessageReceived(message, render_frame_host)) |
| 786 | return true; |
| 787 | } |
| 788 | |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 789 | for (auto& observer : observers_) { |
| 790 | if (observer.OnMessageReceived(message, render_frame_host)) |
| 791 | return true; |
| 792 | } |
| 793 | |
| 794 | bool handled = true; |
| 795 | IPC_BEGIN_MESSAGE_MAP_WITH_PARAM(WebContentsImpl, message, render_frame_host) |
[email protected] | cfa856d6 | 2014-02-22 07:58:40 | [diff] [blame] | 796 | IPC_MESSAGE_HANDLER(FrameHostMsg_DomOperationResponse, |
| 797 | OnDomOperationResponse) |
[email protected] | 37b64c5 | 2014-07-11 21:14:05 | [diff] [blame] | 798 | IPC_MESSAGE_HANDLER(FrameHostMsg_DidChangeThemeColor, |
| 799 | OnThemeColorChanged) |
[email protected] | 8ed1647 | 2014-04-11 19:02:48 | [diff] [blame] | 800 | IPC_MESSAGE_HANDLER(FrameHostMsg_DidFinishDocumentLoad, |
| 801 | OnDocumentLoadedInFrame) |
| 802 | IPC_MESSAGE_HANDLER(FrameHostMsg_DidFinishLoad, OnDidFinishLoad) |
avi | 7830c85 | 2015-08-31 23:46:25 | [diff] [blame] | 803 | IPC_MESSAGE_HANDLER(FrameHostMsg_DidLoadResourceFromMemoryCache, |
[email protected] | 724159a | 2010-12-30 01:11:18 | [diff] [blame] | 804 | OnDidLoadResourceFromMemoryCache) |
avi | 3a333262 | 2015-09-01 01:18:54 | [diff] [blame] | 805 | IPC_MESSAGE_HANDLER(FrameHostMsg_DidDisplayInsecureContent, |
[email protected] | 724159a | 2010-12-30 01:11:18 | [diff] [blame] | 806 | OnDidDisplayInsecureContent) |
elawrence | b2ac2a23 | 2017-03-27 21:46:25 | [diff] [blame] | 807 | IPC_MESSAGE_HANDLER(FrameHostMsg_DidContainInsecureFormAction, |
| 808 | OnDidContainInsecureFormAction) |
avi | 3a333262 | 2015-09-01 01:18:54 | [diff] [blame] | 809 | IPC_MESSAGE_HANDLER(FrameHostMsg_DidRunInsecureContent, |
[email protected] | 724159a | 2010-12-30 01:11:18 | [diff] [blame] | 810 | OnDidRunInsecureContent) |
estark | 910b457 | 2015-12-09 20:55:41 | [diff] [blame] | 811 | IPC_MESSAGE_HANDLER(FrameHostMsg_DidDisplayContentWithCertificateErrors, |
| 812 | OnDidDisplayContentWithCertificateErrors) |
| 813 | IPC_MESSAGE_HANDLER(FrameHostMsg_DidRunContentWithCertificateErrors, |
| 814 | OnDidRunContentWithCertificateErrors) |
avi | a23e16b | 2015-07-09 14:18:48 | [diff] [blame] | 815 | IPC_MESSAGE_HANDLER(FrameHostMsg_RegisterProtocolHandler, |
| 816 | OnRegisterProtocolHandler) |
| 817 | IPC_MESSAGE_HANDLER(FrameHostMsg_UnregisterProtocolHandler, |
| 818 | OnUnregisterProtocolHandler) |
kouhei | 40f03cb | 2015-09-24 07:47:01 | [diff] [blame] | 819 | IPC_MESSAGE_HANDLER(FrameHostMsg_UpdatePageImportanceSignals, |
| 820 | OnUpdatePageImportanceSignals) |
paulmeyer | 5d0a5f0 | 2016-01-21 20:15:52 | [diff] [blame] | 821 | IPC_MESSAGE_HANDLER(FrameHostMsg_Find_Reply, OnFindReply) |
lukasza | 178ff09 | 2017-06-07 23:39:50 | [diff] [blame] | 822 | IPC_MESSAGE_HANDLER(FrameHostMsg_UpdateFaviconURL, OnUpdateFaviconURL) |
brettw | 4b46108 | 2016-11-19 18:55:16 | [diff] [blame] | 823 | #if BUILDFLAG(ENABLE_PLUGINS) |
emaxx | e70f5e1 | 2015-05-29 11:26:00 | [diff] [blame] | 824 | IPC_MESSAGE_HANDLER(FrameHostMsg_PepperInstanceCreated, |
| 825 | OnPepperInstanceCreated) |
| 826 | IPC_MESSAGE_HANDLER(FrameHostMsg_PepperInstanceDeleted, |
| 827 | OnPepperInstanceDeleted) |
tommycli | e6633ca7 | 2014-10-31 00:40:42 | [diff] [blame] | 828 | IPC_MESSAGE_HANDLER(FrameHostMsg_PepperPluginHung, OnPepperPluginHung) |
zqzhang | 181047e6 | 2016-07-01 13:37:17 | [diff] [blame] | 829 | IPC_MESSAGE_HANDLER(FrameHostMsg_PepperStartsPlayback, |
| 830 | OnPepperStartsPlayback) |
| 831 | IPC_MESSAGE_HANDLER(FrameHostMsg_PepperStopsPlayback, |
| 832 | OnPepperStopsPlayback) |
tommycli | e6633ca7 | 2014-10-31 00:40:42 | [diff] [blame] | 833 | IPC_MESSAGE_HANDLER(FrameHostMsg_PluginCrashed, OnPluginCrashed) |
[email protected] | c453807 | 2013-03-18 02:17:55 | [diff] [blame] | 834 | IPC_MESSAGE_HANDLER_GENERIC(BrowserPluginHostMsg_Attach, |
fsamuel | 833ee7c | 2015-02-13 23:40:40 | [diff] [blame] | 835 | OnBrowserPluginMessage(render_frame_host, |
| 836 | message)) |
thestig | c4cac8f | 2014-09-04 21:17:50 | [diff] [blame] | 837 | #endif |
mfomitchev | 2b8b066a | 2016-01-28 19:23:15 | [diff] [blame] | 838 | #if defined(OS_ANDROID) |
paulmeyer | 5d0a5f0 | 2016-01-21 20:15:52 | [diff] [blame] | 839 | IPC_MESSAGE_HANDLER(FrameHostMsg_FindMatchRects_Reply, |
[email protected] | 8ed1647 | 2014-04-11 19:02:48 | [diff] [blame] | 840 | OnFindMatchRectsReply) |
paulmeyer | c8cb7cb | 2016-06-07 01:14:19 | [diff] [blame] | 841 | IPC_MESSAGE_HANDLER(FrameHostMsg_GetNearestFindResult_Reply, |
| 842 | OnGetNearestFindResultReply) |
[email protected] | 8ed1647 | 2014-04-11 19:02:48 | [diff] [blame] | 843 | #endif |
[email protected] | 724159a | 2010-12-30 01:11:18 | [diff] [blame] | 844 | IPC_MESSAGE_UNHANDLED(handled = false) |
[email protected] | e44d134 | 2014-05-16 21:29:33 | [diff] [blame] | 845 | IPC_END_MESSAGE_MAP() |
[email protected] | 724159a | 2010-12-30 01:11:18 | [diff] [blame] | 846 | |
[email protected] | 724159a | 2010-12-30 01:11:18 | [diff] [blame] | 847 | return handled; |
| 848 | } |
| 849 | |
[email protected] | d1198fd | 2012-08-13 22:50:19 | [diff] [blame] | 850 | NavigationControllerImpl& WebContentsImpl::GetController() { |
[email protected] | f5fa20e | 2011-12-21 22:35:56 | [diff] [blame] | 851 | return controller_; |
| 852 | } |
| 853 | |
[email protected] | d1198fd | 2012-08-13 22:50:19 | [diff] [blame] | 854 | const NavigationControllerImpl& WebContentsImpl::GetController() const { |
[email protected] | f5fa20e | 2011-12-21 22:35:56 | [diff] [blame] | 855 | return controller_; |
| 856 | } |
| 857 | |
[email protected] | 8ff00d7 | 2012-10-23 19:12:21 | [diff] [blame] | 858 | BrowserContext* WebContentsImpl::GetBrowserContext() const { |
[email protected] | a2602382 | 2011-12-29 00:23:55 | [diff] [blame] | 859 | return controller_.GetBrowserContext(); |
[email protected] | 627e051 | 2011-12-21 22:55:30 | [diff] [blame] | 860 | } |
| 861 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 862 | const GURL& WebContentsImpl::GetURL() const { |
[email protected] | c854a7e | 2013-05-21 16:42:24 | [diff] [blame] | 863 | // We may not have a navigation entry yet. |
[email protected] | 59167c2 | 2013-06-03 18:07:32 | [diff] [blame] | 864 | NavigationEntry* entry = controller_.GetVisibleEntry(); |
[email protected] | 36fc039 | 2011-12-25 03:59:51 | [diff] [blame] | 865 | return entry ? entry->GetVirtualURL() : GURL::EmptyGURL(); |
[email protected] | be1f56ab | 2011-12-22 06:55:31 | [diff] [blame] | 866 | } |
| 867 | |
[email protected] | a093ce0 | 2013-07-22 20:53:14 | [diff] [blame] | 868 | const GURL& WebContentsImpl::GetVisibleURL() const { |
[email protected] | c854a7e | 2013-05-21 16:42:24 | [diff] [blame] | 869 | // We may not have a navigation entry yet. |
[email protected] | 59167c2 | 2013-06-03 18:07:32 | [diff] [blame] | 870 | NavigationEntry* entry = controller_.GetVisibleEntry(); |
[email protected] | c854a7e | 2013-05-21 16:42:24 | [diff] [blame] | 871 | return entry ? entry->GetVirtualURL() : GURL::EmptyGURL(); |
| 872 | } |
| 873 | |
| 874 | const GURL& WebContentsImpl::GetLastCommittedURL() const { |
| 875 | // We may not have a navigation entry yet. |
| 876 | NavigationEntry* entry = controller_.GetLastCommittedEntry(); |
| 877 | return entry ? entry->GetVirtualURL() : GURL::EmptyGURL(); |
| 878 | } |
| 879 | |
[email protected] | 8ff00d7 | 2012-10-23 19:12:21 | [diff] [blame] | 880 | WebContentsDelegate* WebContentsImpl::GetDelegate() { |
[email protected] | be1f56ab | 2011-12-22 06:55:31 | [diff] [blame] | 881 | return delegate_; |
| 882 | } |
| 883 | |
[email protected] | 8ff00d7 | 2012-10-23 19:12:21 | [diff] [blame] | 884 | void WebContentsImpl::SetDelegate(WebContentsDelegate* delegate) { |
[email protected] | be1f56ab | 2011-12-22 06:55:31 | [diff] [blame] | 885 | // TODO(cbentzel): remove this debugging code? |
| 886 | if (delegate == delegate_) |
| 887 | return; |
| 888 | if (delegate_) |
| 889 | delegate_->Detach(this); |
| 890 | delegate_ = delegate; |
[email protected] | a6b73c6 | 2013-02-11 23:05:08 | [diff] [blame] | 891 | if (delegate_) { |
[email protected] | be1f56ab | 2011-12-22 06:55:31 | [diff] [blame] | 892 | delegate_->Attach(this); |
[email protected] | a6b73c6 | 2013-02-11 23:05:08 | [diff] [blame] | 893 | // Ensure the visible RVH reflects the new delegate's preferences. |
[email protected] | 86f98a2 | 2013-03-20 14:35:00 | [diff] [blame] | 894 | if (view_) |
[email protected] | e85165c64 | 2014-06-10 14:34:31 | [diff] [blame] | 895 | view_->SetOverscrollControllerEnabled(CanOverscrollContent()); |
Joel Einbinder | 848001c | 2017-09-19 21:39:31 | [diff] [blame] | 896 | if (GetRenderViewHost()) |
| 897 | RenderFrameDevToolsAgentHost::WebContentsCreated(this); |
[email protected] | a6b73c6 | 2013-02-11 23:05:08 | [diff] [blame] | 898 | } |
[email protected] | be1f56ab | 2011-12-22 06:55:31 | [diff] [blame] | 899 | } |
| 900 | |
Lukasz Anforowicz | e9ae372 | 2017-09-29 17:37:38 | [diff] [blame] | 901 | RenderFrameHostImpl* WebContentsImpl::GetMainFrame() const { |
[email protected] | 94d0cc1 | 2013-12-18 00:07:41 | [diff] [blame] | 902 | return frame_tree_.root()->current_frame_host(); |
[email protected] | 60eca4eb | 2013-12-06 00:02:16 | [diff] [blame] | 903 | } |
| 904 | |
nick | 53d5cbf | 2015-04-23 22:50:14 | [diff] [blame] | 905 | RenderFrameHostImpl* WebContentsImpl::GetFocusedFrame() { |
| 906 | FrameTreeNode* focused_node = frame_tree_.GetFocusedFrame(); |
| 907 | if (!focused_node) |
| 908 | return nullptr; |
| 909 | return focused_node->current_frame_host(); |
[email protected] | 9c9343b | 2014-03-08 02:56:07 | [diff] [blame] | 910 | } |
| 911 | |
rob | 3e2a073 | 2016-01-06 21:22:09 | [diff] [blame] | 912 | RenderFrameHostImpl* WebContentsImpl::FindFrameByFrameTreeNodeId( |
creis | f71a263 | 2017-05-04 19:03:50 | [diff] [blame] | 913 | int frame_tree_node_id, |
| 914 | int process_id) { |
| 915 | FrameTreeNode* frame = frame_tree_.FindByID(frame_tree_node_id); |
| 916 | |
| 917 | // Sanity check that this is in the caller's expected process. Otherwise a |
| 918 | // recent cross-process navigation may have led to a privilege change that the |
| 919 | // caller is not expecting. |
| 920 | if (!frame || |
| 921 | frame->current_frame_host()->GetProcess()->GetID() != process_id) |
| 922 | return nullptr; |
| 923 | |
| 924 | return frame->current_frame_host(); |
| 925 | } |
| 926 | |
| 927 | RenderFrameHostImpl* WebContentsImpl::UnsafeFindFrameByFrameTreeNodeId( |
rob | 3e2a073 | 2016-01-06 21:22:09 | [diff] [blame] | 928 | int frame_tree_node_id) { |
creis | f71a263 | 2017-05-04 19:03:50 | [diff] [blame] | 929 | // Beware using this! The RenderFrameHost may have changed since the caller |
| 930 | // obtained frame_tree_node_id. |
rob | 3e2a073 | 2016-01-06 21:22:09 | [diff] [blame] | 931 | FrameTreeNode* frame = frame_tree_.FindByID(frame_tree_node_id); |
| 932 | return frame ? frame->current_frame_host() : nullptr; |
| 933 | } |
| 934 | |
[email protected] | a86c0e96 | 2013-12-17 17:10:39 | [diff] [blame] | 935 | void WebContentsImpl::ForEachFrame( |
Lei Zhang | ebcc630 | 2018-01-12 19:46:45 | [diff] [blame] | 936 | const base::RepeatingCallback<void(RenderFrameHost*)>& on_frame) { |
dcheng | 57e39e2 | 2016-01-21 00:25:38 | [diff] [blame] | 937 | for (FrameTreeNode* node : frame_tree_.Nodes()) { |
| 938 | on_frame.Run(node->current_frame_host()); |
| 939 | } |
[email protected] | a86c0e96 | 2013-12-17 17:10:39 | [diff] [blame] | 940 | } |
| 941 | |
dcheng | afb53e2 | 2016-02-04 08:11:08 | [diff] [blame] | 942 | std::vector<RenderFrameHost*> WebContentsImpl::GetAllFrames() { |
| 943 | std::vector<RenderFrameHost*> frame_hosts; |
| 944 | for (FrameTreeNode* node : frame_tree_.Nodes()) |
| 945 | frame_hosts.push_back(node->current_frame_host()); |
| 946 | return frame_hosts; |
| 947 | } |
| 948 | |
lukasza | cbdf52e | 2016-01-15 21:19:51 | [diff] [blame] | 949 | int WebContentsImpl::SendToAllFrames(IPC::Message* message) { |
| 950 | int number_of_messages = 0; |
dcheng | afb53e2 | 2016-02-04 08:11:08 | [diff] [blame] | 951 | for (RenderFrameHost* rfh : GetAllFrames()) { |
lukasza | 1a9ab242 | 2016-03-02 18:47:25 | [diff] [blame] | 952 | if (!rfh->IsRenderFrameLive()) |
| 953 | continue; |
| 954 | |
dcheng | afb53e2 | 2016-02-04 08:11:08 | [diff] [blame] | 955 | ++number_of_messages; |
| 956 | IPC::Message* message_copy = new IPC::Message(*message); |
| 957 | message_copy->set_routing_id(rfh->GetRoutingID()); |
| 958 | rfh->Send(message_copy); |
| 959 | } |
[email protected] | a86c0e96 | 2013-12-17 17:10:39 | [diff] [blame] | 960 | delete message; |
lukasza | cbdf52e | 2016-01-15 21:19:51 | [diff] [blame] | 961 | return number_of_messages; |
[email protected] | a86c0e96 | 2013-12-17 17:10:39 | [diff] [blame] | 962 | } |
| 963 | |
lfg | db5c4ed | 2016-03-04 23:09:07 | [diff] [blame] | 964 | void WebContentsImpl::SendPageMessage(IPC::Message* msg) { |
alexmos | 136fd6e6 | 2016-08-15 20:58:41 | [diff] [blame] | 965 | frame_tree_.root()->render_manager()->SendPageMessage(msg, nullptr); |
lfg | db5c4ed | 2016-03-04 23:09:07 | [diff] [blame] | 966 | } |
| 967 | |
creis | c014b40 | 2015-04-23 16:41:45 | [diff] [blame] | 968 | RenderViewHostImpl* WebContentsImpl::GetRenderViewHost() const { |
[email protected] | fa944cb8 | 2013-11-15 17:51:21 | [diff] [blame] | 969 | return GetRenderManager()->current_host(); |
[email protected] | be1f56ab | 2011-12-22 06:55:31 | [diff] [blame] | 970 | } |
| 971 | |
creis | 89a0f78 | 2015-05-27 16:13:17 | [diff] [blame] | 972 | void WebContentsImpl::CancelActiveAndPendingDialogs() { |
avi | 5d3b869 | 2016-10-12 22:00:46 | [diff] [blame] | 973 | if (dialog_manager_) { |
avi | 6879fcf | 2017-01-21 05:27:53 | [diff] [blame] | 974 | dialog_manager_->CancelDialogs(this, /*reset_state=*/false); |
avi | 5d3b869 | 2016-10-12 22:00:46 | [diff] [blame] | 975 | } |
creis | 89a0f78 | 2015-05-27 16:13:17 | [diff] [blame] | 976 | if (browser_plugin_embedder_) |
| 977 | browser_plugin_embedder_->CancelGuestDialogs(); |
| 978 | } |
| 979 | |
nasko | c0fceff | 2015-04-30 15:53:52 | [diff] [blame] | 980 | void WebContentsImpl::ClosePage() { |
| 981 | GetRenderViewHost()->ClosePage(); |
| 982 | } |
| 983 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 984 | RenderWidgetHostView* WebContentsImpl::GetRenderWidgetHostView() const { |
[email protected] | fa944cb8 | 2013-11-15 17:51:21 | [diff] [blame] | 985 | return GetRenderManager()->GetRenderWidgetHostView(); |
[email protected] | be1f56ab | 2011-12-22 06:55:31 | [diff] [blame] | 986 | } |
| 987 | |
lfg | 265a267 | 2016-04-23 03:11:02 | [diff] [blame] | 988 | RenderWidgetHostView* WebContentsImpl::GetTopLevelRenderWidgetHostView() { |
| 989 | if (GetOuterWebContents()) |
| 990 | return GetOuterWebContents()->GetTopLevelRenderWidgetHostView(); |
| 991 | return GetRenderManager()->GetRenderWidgetHostView(); |
| 992 | } |
| 993 | |
[email protected] | 4aebbca | 2013-09-17 22:26:49 | [diff] [blame] | 994 | RenderWidgetHostView* WebContentsImpl::GetFullscreenRenderWidgetHostView() |
| 995 | const { |
vmpstr | 6d9996c8 | 2017-02-23 00:43:25 | [diff] [blame] | 996 | if (auto* widget_host = GetFullscreenRenderWidgetHost()) |
ekaramad | aeb3c5c | 2016-11-09 03:22:35 | [diff] [blame] | 997 | return widget_host->GetView(); |
| 998 | return nullptr; |
[email protected] | 4aebbca | 2013-09-17 22:26:49 | [diff] [blame] | 999 | } |
| 1000 | |
[email protected] | 8ff00d7 | 2012-10-23 19:12:21 | [diff] [blame] | 1001 | WebContentsView* WebContentsImpl::GetView() const { |
[email protected] | be1f56ab | 2011-12-22 06:55:31 | [diff] [blame] | 1002 | return view_.get(); |
| 1003 | } |
| 1004 | |
leon.han | 552e9de | 2017-02-09 14:37:30 | [diff] [blame] | 1005 | void WebContentsImpl::OnScreenOrientationChange() { |
| 1006 | DCHECK(screen_orientation_provider_); |
| 1007 | return screen_orientation_provider_->OnOrientationChange(); |
leon.han | e4db177a | 2017-02-07 14:19:16 | [diff] [blame] | 1008 | } |
| 1009 | |
yusufo | d41c5f9 | 2015-03-06 00:14:28 | [diff] [blame] | 1010 | SkColor WebContentsImpl::GetThemeColor() const { |
| 1011 | return theme_color_; |
| 1012 | } |
| 1013 | |
Doug Turner | 63f3c7b | 2017-07-29 05:10:01 | [diff] [blame] | 1014 | void WebContentsImpl::SetAccessibilityMode(ui::AXMode mode) { |
[email protected] | 9564021 | 2014-07-26 18:14:30 | [diff] [blame] | 1015 | if (mode == accessibility_mode_) |
| 1016 | return; |
| 1017 | |
dmazzoni | f8a3104 | 2016-12-03 00:52:13 | [diff] [blame] | 1018 | // Don't allow accessibility to be enabled for WebContents that are never |
| 1019 | // visible, like background pages. |
| 1020 | if (IsNeverVisible()) |
| 1021 | return; |
| 1022 | |
[email protected] | 9564021 | 2014-07-26 18:14:30 | [diff] [blame] | 1023 | accessibility_mode_ = mode; |
dcheng | 57e39e2 | 2016-01-21 00:25:38 | [diff] [blame] | 1024 | |
| 1025 | for (FrameTreeNode* node : frame_tree_.Nodes()) { |
dmazzoni | f8a3104 | 2016-12-03 00:52:13 | [diff] [blame] | 1026 | UpdateAccessibilityModeOnFrame(node->current_frame_host()); |
clamy | 610c63b3 | 2017-12-22 15:05:18 | [diff] [blame] | 1027 | // Also update accessibility mode on the speculative RenderFrameHost for |
| 1028 | // this FrameTreeNode, if one exists. |
Alex Moshchuk | 3d8a1f39 | 2017-10-24 19:01:26 | [diff] [blame] | 1029 | RenderFrameHost* speculative_frame_host = |
| 1030 | node->render_manager()->speculative_frame_host(); |
| 1031 | if (speculative_frame_host) |
| 1032 | UpdateAccessibilityModeOnFrame(speculative_frame_host); |
dcheng | 57e39e2 | 2016-01-21 00:25:38 | [diff] [blame] | 1033 | } |
[email protected] | 9564021 | 2014-07-26 18:14:30 | [diff] [blame] | 1034 | } |
| 1035 | |
Doug Turner | 63f3c7b | 2017-07-29 05:10:01 | [diff] [blame] | 1036 | void WebContentsImpl::AddAccessibilityMode(ui::AXMode mode) { |
| 1037 | ui::AXMode new_mode(accessibility_mode_); |
dougt | cd3dad73 | 2017-03-14 03:26:23 | [diff] [blame] | 1038 | new_mode |= mode; |
| 1039 | SetAccessibilityMode(new_mode); |
[email protected] | 9564021 | 2014-07-26 18:14:30 | [diff] [blame] | 1040 | } |
| 1041 | |
Avi Drissman | 1e620f3 | 2018-03-16 13:57:29 | [diff] [blame] | 1042 | // Helper class used by WebContentsImpl::RequestAXTreeSnapshot. |
| 1043 | // Handles the callbacks from parallel snapshot requests to each frame, |
| 1044 | // and feeds the results to an AXTreeCombiner, which converts them into a |
| 1045 | // single combined accessibility tree. |
| 1046 | class WebContentsImpl::AXTreeSnapshotCombiner |
| 1047 | : public base::RefCounted<AXTreeSnapshotCombiner> { |
| 1048 | public: |
| 1049 | explicit AXTreeSnapshotCombiner(AXTreeSnapshotCallback callback) |
| 1050 | : callback_(std::move(callback)) {} |
| 1051 | |
| 1052 | AXTreeSnapshotCallback AddFrame(bool is_root) { |
| 1053 | // Adds a reference to |this|. |
| 1054 | return base::BindOnce(&AXTreeSnapshotCombiner::ReceiveSnapshot, this, |
| 1055 | is_root); |
| 1056 | } |
| 1057 | |
| 1058 | void ReceiveSnapshot(bool is_root, const ui::AXTreeUpdate& snapshot) { |
| 1059 | combiner_.AddTree(snapshot, is_root); |
| 1060 | } |
| 1061 | |
| 1062 | private: |
| 1063 | friend class base::RefCounted<AXTreeSnapshotCombiner>; |
| 1064 | |
| 1065 | // This is called automatically after the last call to ReceiveSnapshot |
| 1066 | // when there are no more references to this object. |
| 1067 | ~AXTreeSnapshotCombiner() { |
| 1068 | combiner_.Combine(); |
| 1069 | std::move(callback_).Run(combiner_.combined()); |
| 1070 | } |
| 1071 | |
| 1072 | ui::AXTreeCombiner combiner_; |
| 1073 | AXTreeSnapshotCallback callback_; |
| 1074 | }; |
| 1075 | |
| 1076 | void WebContentsImpl::RequestAXTreeSnapshot(AXTreeSnapshotCallback callback, |
| 1077 | ui::AXMode ax_mode) { |
dmazzoni | d95ae84 | 2016-04-12 21:17:39 | [diff] [blame] | 1078 | // Send a request to each of the frames in parallel. Each one will return |
| 1079 | // an accessibility tree snapshot, and AXTreeSnapshotCombiner will combine |
| 1080 | // them into a single tree and call |callback| with that result, then |
| 1081 | // delete |combiner|. |
Avi Drissman | 1e620f3 | 2018-03-16 13:57:29 | [diff] [blame] | 1082 | FrameTreeNode* root_node = frame_tree_.root(); |
Avi Drissman | b30851c | 2018-03-08 20:34:33 | [diff] [blame] | 1083 | AXTreeSnapshotCombiner* combiner = |
| 1084 | new AXTreeSnapshotCombiner(std::move(callback)); |
Avi Drissman | 1e620f3 | 2018-03-16 13:57:29 | [diff] [blame] | 1085 | |
| 1086 | RecursiveRequestAXTreeSnapshotOnFrame(root_node, combiner, ax_mode); |
| 1087 | } |
| 1088 | |
| 1089 | void WebContentsImpl::RecursiveRequestAXTreeSnapshotOnFrame( |
| 1090 | FrameTreeNode* root_node, |
| 1091 | AXTreeSnapshotCombiner* combiner, |
| 1092 | ui::AXMode ax_mode) { |
dmazzoni | d95ae84 | 2016-04-12 21:17:39 | [diff] [blame] | 1093 | for (FrameTreeNode* frame_tree_node : frame_tree_.Nodes()) { |
Avi Drissman | 1e620f3 | 2018-03-16 13:57:29 | [diff] [blame] | 1094 | WebContentsImpl* inner_contents = |
| 1095 | node_.GetInnerWebContentsInFrame(frame_tree_node); |
| 1096 | if (inner_contents) { |
| 1097 | inner_contents->RecursiveRequestAXTreeSnapshotOnFrame(root_node, combiner, |
| 1098 | ax_mode); |
| 1099 | } else { |
| 1100 | bool is_root = frame_tree_node == root_node; |
| 1101 | frame_tree_node->current_frame_host()->RequestAXTreeSnapshot( |
| 1102 | combiner->AddFrame(is_root), ax_mode); |
| 1103 | } |
dmazzoni | d95ae84 | 2016-04-12 21:17:39 | [diff] [blame] | 1104 | } |
dmazzoni | 83ba5c8 | 2015-04-14 07:11:51 | [diff] [blame] | 1105 | } |
| 1106 | |
mcnee | 336ea2c | 2017-05-23 22:50:59 | [diff] [blame] | 1107 | #if !defined(OS_ANDROID) |
wjmaclean | 6495190 | 2016-04-29 20:59:12 | [diff] [blame] | 1108 | void WebContentsImpl::SetTemporaryZoomLevel(double level, |
| 1109 | bool temporary_zoom_enabled) { |
| 1110 | SendPageMessage(new PageMsg_SetZoomLevel( |
| 1111 | MSG_ROUTING_NONE, |
| 1112 | temporary_zoom_enabled ? PageMsg_SetZoomLevel_Command::SET_TEMPORARY |
| 1113 | : PageMsg_SetZoomLevel_Command::CLEAR_TEMPORARY, |
| 1114 | level)); |
| 1115 | } |
| 1116 | |
| 1117 | void WebContentsImpl::UpdateZoom(double level) { |
| 1118 | // Individual frames may still ignore the new zoom level if their RenderView |
| 1119 | // contains a plugin document or if it uses a temporary zoom level. |
| 1120 | SendPageMessage(new PageMsg_SetZoomLevel( |
| 1121 | MSG_ROUTING_NONE, |
| 1122 | PageMsg_SetZoomLevel_Command::USE_CURRENT_TEMPORARY_MODE, level)); |
| 1123 | } |
| 1124 | |
| 1125 | void WebContentsImpl::UpdateZoomIfNecessary(const std::string& scheme, |
| 1126 | const std::string& host, |
| 1127 | double level) { |
| 1128 | NavigationEntry* entry = GetController().GetLastCommittedEntry(); |
| 1129 | if (!entry) |
| 1130 | return; |
| 1131 | |
| 1132 | GURL url = HostZoomMap::GetURLFromEntry(entry); |
| 1133 | if (host != net::GetHostOrSpecFromURL(url) || |
| 1134 | (!scheme.empty() && !url.SchemeIs(scheme))) { |
| 1135 | return; |
| 1136 | } |
| 1137 | |
| 1138 | UpdateZoom(level); |
| 1139 | } |
mcnee | 336ea2c | 2017-05-23 22:50:59 | [diff] [blame] | 1140 | #endif // !defined(OS_ANDROID) |
wjmaclean | 6495190 | 2016-04-29 20:59:12 | [diff] [blame] | 1141 | |
rockot | f62002a | 2016-09-15 00:08:59 | [diff] [blame] | 1142 | base::Closure WebContentsImpl::AddBindingSet( |
| 1143 | const std::string& interface_name, |
| 1144 | WebContentsBindingSet* binding_set) { |
| 1145 | auto result = |
| 1146 | binding_sets_.insert(std::make_pair(interface_name, binding_set)); |
| 1147 | DCHECK(result.second); |
| 1148 | return base::Bind(&WebContentsImpl::RemoveBindingSet, |
| 1149 | weak_factory_.GetWeakPtr(), interface_name); |
| 1150 | } |
| 1151 | |
rockot | 8bbad22 | 2017-03-22 04:34:05 | [diff] [blame] | 1152 | WebContentsBindingSet* WebContentsImpl::GetBindingSet( |
| 1153 | const std::string& interface_name) { |
| 1154 | auto it = binding_sets_.find(interface_name); |
| 1155 | if (it == binding_sets_.end()) |
| 1156 | return nullptr; |
| 1157 | return it->second; |
| 1158 | } |
| 1159 | |
paulmeyer | feafc2d | 2017-04-25 21:46:40 | [diff] [blame] | 1160 | std::vector<WebContentsImpl*> WebContentsImpl::GetInnerWebContents() { |
| 1161 | if (browser_plugin_embedder_) { |
| 1162 | std::vector<WebContentsImpl*> inner_contents; |
| 1163 | GetBrowserContext()->GetGuestManager()->ForEachGuest( |
Mark Pilgrim | d8412173 | 2018-03-22 14:12:12 | [diff] [blame] | 1164 | this, base::BindRepeating(&GetInnerWebContentsHelper, &inner_contents)); |
paulmeyer | feafc2d | 2017-04-25 21:46:40 | [diff] [blame] | 1165 | return inner_contents; |
| 1166 | } |
| 1167 | |
| 1168 | return node_.inner_web_contents(); |
| 1169 | } |
| 1170 | |
| 1171 | std::vector<WebContentsImpl*> WebContentsImpl::GetWebContentsAndAllInner() { |
| 1172 | std::vector<WebContentsImpl*> all_contents(1, this); |
| 1173 | |
| 1174 | for (size_t i = 0; i != all_contents.size(); ++i) { |
| 1175 | for (auto* inner_contents : all_contents[i]->GetInnerWebContents()) { |
| 1176 | all_contents.push_back(inner_contents); |
| 1177 | } |
| 1178 | } |
| 1179 | |
| 1180 | return all_contents; |
| 1181 | } |
| 1182 | |
Sam McNally | 145fb17 | 2017-05-10 00:13:23 | [diff] [blame] | 1183 | void WebContentsImpl::NotifyManifestUrlChanged( |
| 1184 | const base::Optional<GURL>& manifest_url) { |
| 1185 | for (auto& observer : observers_) |
| 1186 | observer.DidUpdateWebManifestURL(manifest_url); |
| 1187 | } |
| 1188 | |
[email protected] | 8ff00d7 | 2012-10-23 19:12:21 | [diff] [blame] | 1189 | WebUI* WebContentsImpl::GetWebUI() const { |
carlosk | 35f35af | 2015-12-01 10:55:40 | [diff] [blame] | 1190 | WebUI* commited_web_ui = GetCommittedWebUI(); |
| 1191 | return commited_web_ui ? commited_web_ui |
| 1192 | : GetRenderManager()->GetNavigatingWebUI(); |
[email protected] | be1f56ab | 2011-12-22 06:55:31 | [diff] [blame] | 1193 | } |
| 1194 | |
[email protected] | 8ff00d7 | 2012-10-23 19:12:21 | [diff] [blame] | 1195 | WebUI* WebContentsImpl::GetCommittedWebUI() const { |
carlosk | 35f35af | 2015-12-01 10:55:40 | [diff] [blame] | 1196 | return frame_tree_.root()->current_frame_host()->web_ui(); |
[email protected] | d5f942ba | 2008-09-26 19:30:34 | [diff] [blame] | 1197 | } |
| 1198 | |
Changwan Ryu | c1134a8 | 2018-03-07 02:10:14 | [diff] [blame] | 1199 | void WebContentsImpl::SetUserAgentOverride(const std::string& override, |
| 1200 | bool override_in_new_tabs) { |
[email protected] | bf70edce | 2012-06-20 22:32:22 | [diff] [blame] | 1201 | if (GetUserAgentOverride() == override) |
| 1202 | return; |
| 1203 | |
Changwan Ryu | c1134a8 | 2018-03-07 02:10:14 | [diff] [blame] | 1204 | should_override_user_agent_in_new_tabs_ = override_in_new_tabs; |
| 1205 | |
[email protected] | bf70edce | 2012-06-20 22:32:22 | [diff] [blame] | 1206 | renderer_preferences_.user_agent_override = override; |
| 1207 | |
| 1208 | // Send the new override string to the renderer. |
| 1209 | RenderViewHost* host = GetRenderViewHost(); |
| 1210 | if (host) |
| 1211 | host->SyncRendererPrefs(); |
| 1212 | |
| 1213 | // Reload the page if a load is currently in progress to avoid having |
| 1214 | // different parts of the page loaded using different user agents. |
[email protected] | 6286a37 | 2013-10-09 04:03:27 | [diff] [blame] | 1215 | NavigationEntry* entry = controller_.GetVisibleEntry(); |
Ivan Kotenkov | 2c0d2bb3 | 2017-11-01 15:41:28 | [diff] [blame] | 1216 | if (IsLoading() && entry != nullptr && entry->GetIsOverridingUserAgent()) |
toyoshim | 6142d96f | 2016-12-19 09:07:25 | [diff] [blame] | 1217 | controller_.Reload(ReloadType::BYPASSING_CACHE, true); |
[email protected] | 8d0f331 | 2012-08-18 01:47:53 | [diff] [blame] | 1218 | |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 1219 | for (auto& observer : observers_) |
| 1220 | observer.UserAgentOverrideSet(override); |
[email protected] | 86ef6a39 | 2012-05-11 22:03:11 | [diff] [blame] | 1221 | } |
| 1222 | |
| 1223 | const std::string& WebContentsImpl::GetUserAgentOverride() const { |
[email protected] | bf70edce | 2012-06-20 22:32:22 | [diff] [blame] | 1224 | return renderer_preferences_.user_agent_override; |
[email protected] | 86ef6a39 | 2012-05-11 22:03:11 | [diff] [blame] | 1225 | } |
| 1226 | |
Changwan Ryu | c1134a8 | 2018-03-07 02:10:14 | [diff] [blame] | 1227 | bool WebContentsImpl::ShouldOverrideUserAgentInNewTabs() { |
| 1228 | return should_override_user_agent_in_new_tabs_; |
| 1229 | } |
| 1230 | |
dmazzoni | dd3d51a7 | 2016-12-14 18:41:01 | [diff] [blame] | 1231 | void WebContentsImpl::EnableWebContentsOnlyAccessibilityMode() { |
dougt | cd3dad73 | 2017-03-14 03:26:23 | [diff] [blame] | 1232 | if (!GetAccessibilityMode().is_mode_off()) { |
dcheng | afb53e2 | 2016-02-04 08:11:08 | [diff] [blame] | 1233 | for (RenderFrameHost* rfh : GetAllFrames()) |
| 1234 | ResetAccessibility(rfh); |
| 1235 | } else { |
Doug Turner | 63f3c7b | 2017-07-29 05:10:01 | [diff] [blame] | 1236 | AddAccessibilityMode(ui::kAXModeWebContentsOnly); |
dcheng | afb53e2 | 2016-02-04 08:11:08 | [diff] [blame] | 1237 | } |
[email protected] | 9564021 | 2014-07-26 18:14:30 | [diff] [blame] | 1238 | } |
| 1239 | |
dmazzoni | dd3d51a7 | 2016-12-14 18:41:01 | [diff] [blame] | 1240 | bool WebContentsImpl::IsWebContentsOnlyAccessibilityModeForTesting() const { |
Doug Turner | 63f3c7b | 2017-07-29 05:10:01 | [diff] [blame] | 1241 | return accessibility_mode_ == ui::kAXModeWebContentsOnly; |
[email protected] | 9564021 | 2014-07-26 18:14:30 | [diff] [blame] | 1242 | } |
| 1243 | |
| 1244 | bool WebContentsImpl::IsFullAccessibilityModeForTesting() const { |
Doug Turner | 63f3c7b | 2017-07-29 05:10:01 | [diff] [blame] | 1245 | return accessibility_mode_ == ui::kAXModeComplete; |
[email protected] | 9564021 | 2014-07-26 18:14:30 | [diff] [blame] | 1246 | } |
| 1247 | |
kouhei | 40f03cb | 2015-09-24 07:47:01 | [diff] [blame] | 1248 | const PageImportanceSignals& WebContentsImpl::GetPageImportanceSignals() const { |
| 1249 | return page_importance_signals_; |
| 1250 | } |
| 1251 | |
Guido Urdaneta | f400800 | 2018-05-03 10:43:04 | [diff] [blame] | 1252 | const std::string& WebContentsImpl::GetMediaDeviceGroupIDSaltBase() const { |
| 1253 | return media_device_group_id_salt_base_; |
| 1254 | } |
| 1255 | |
[email protected] | fcf75d4 | 2013-12-03 20:11:26 | [diff] [blame] | 1256 | const base::string16& WebContentsImpl::GetTitle() const { |
[email protected] | 4c6092c5b | 2009-06-06 00:23:55 | [diff] [blame] | 1257 | // Transient entries take precedence. They are used for interstitial pages |
| 1258 | // that are shown on top of existing pages. |
[email protected] | 10f417c5 | 2011-12-28 21:04:23 | [diff] [blame] | 1259 | NavigationEntry* entry = controller_.GetTransientEntry(); |
[email protected] | 45d0ef7f | 2011-01-05 13:46:23 | [diff] [blame] | 1260 | if (entry) { |
jshin | 1fb7646 | 2016-04-05 22:13:03 | [diff] [blame] | 1261 | return entry->GetTitleForDisplay(); |
[email protected] | 45d0ef7f | 2011-01-05 13:46:23 | [diff] [blame] | 1262 | } |
carlosk | 35f35af | 2015-12-01 10:55:40 | [diff] [blame] | 1263 | |
| 1264 | WebUI* navigating_web_ui = GetRenderManager()->GetNavigatingWebUI(); |
| 1265 | WebUI* our_web_ui = navigating_web_ui |
| 1266 | ? navigating_web_ui |
| 1267 | : GetRenderManager()->current_frame_host()->web_ui(); |
| 1268 | |
[email protected] | 7ade273 | 2011-02-10 00:13:58 | [diff] [blame] | 1269 | if (our_web_ui) { |
[email protected] | 96d185d | 2009-04-24 03:28:54 | [diff] [blame] | 1270 | // Don't override the title in view source mode. |
[email protected] | 59167c2 | 2013-06-03 18:07:32 | [diff] [blame] | 1271 | entry = controller_.GetVisibleEntry(); |
[email protected] | 96d185d | 2009-04-24 03:28:54 | [diff] [blame] | 1272 | if (!(entry && entry->IsViewSourceMode())) { |
[email protected] | e011291 | 2011-02-02 22:54:35 | [diff] [blame] | 1273 | // Give the Web UI the chance to override our title. |
[email protected] | fcf75d4 | 2013-12-03 20:11:26 | [diff] [blame] | 1274 | const base::string16& title = our_web_ui->GetOverriddenTitle(); |
[email protected] | 96d185d | 2009-04-24 03:28:54 | [diff] [blame] | 1275 | if (!title.empty()) |
| 1276 | return title; |
| 1277 | } |
| 1278 | } |
| 1279 | |
| 1280 | // We use the title for the last committed entry rather than a pending |
| 1281 | // navigation entry. For example, when the user types in a URL, we want to |
| 1282 | // keep the old page's title until the new load has committed and we get a new |
| 1283 | // title. |
[email protected] | 96d185d | 2009-04-24 03:28:54 | [diff] [blame] | 1284 | entry = controller_.GetLastCommittedEntry(); |
[email protected] | 59167c2 | 2013-06-03 18:07:32 | [diff] [blame] | 1285 | |
creis | 072b61f | 2015-09-28 20:52:24 | [diff] [blame] | 1286 | // We make an exception for initial navigations. We only want to use the title |
| 1287 | // from the visible entry if: |
| 1288 | // 1. The pending entry has been explicitly assigned a title to display. |
| 1289 | // 2. The user is doing a history navigation in a new tab (e.g., Ctrl+Back), |
| 1290 | // which case there is a pending entry index other than -1. |
| 1291 | // |
| 1292 | // Otherwise, we want to stick with the last committed entry's title during |
| 1293 | // new navigations, which have pending entries at index -1 with no title. |
| 1294 | if (controller_.IsInitialNavigation() && |
| 1295 | ((controller_.GetVisibleEntry() && |
| 1296 | !controller_.GetVisibleEntry()->GetTitle().empty()) || |
| 1297 | controller_.GetPendingEntryIndex() != -1)) { |
| 1298 | entry = controller_.GetVisibleEntry(); |
[email protected] | 9eeafc01 | 2013-11-25 23:49:47 | [diff] [blame] | 1299 | } |
[email protected] | 59167c2 | 2013-06-03 18:07:32 | [diff] [blame] | 1300 | |
[email protected] | 45d0ef7f | 2011-01-05 13:46:23 | [diff] [blame] | 1301 | if (entry) { |
jshin | 1fb7646 | 2016-04-05 22:13:03 | [diff] [blame] | 1302 | return entry->GetTitleForDisplay(); |
[email protected] | 45d0ef7f | 2011-01-05 13:46:23 | [diff] [blame] | 1303 | } |
[email protected] | 987fc3a | 2011-05-26 14:18:09 | [diff] [blame] | 1304 | |
| 1305 | // |page_title_when_no_navigation_entry_| is finally used |
| 1306 | // if no title cannot be retrieved. |
| 1307 | return page_title_when_no_navigation_entry_; |
[email protected] | 96d185d | 2009-04-24 03:28:54 | [diff] [blame] | 1308 | } |
| 1309 | |
creis | cce56cd | 2014-09-29 22:45:22 | [diff] [blame] | 1310 | SiteInstanceImpl* WebContentsImpl::GetSiteInstance() const { |
[email protected] | fa944cb8 | 2013-11-15 17:51:21 | [diff] [blame] | 1311 | return GetRenderManager()->current_host()->GetSiteInstance(); |
[email protected] | 96d185d | 2009-04-24 03:28:54 | [diff] [blame] | 1312 | } |
| 1313 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 1314 | bool WebContentsImpl::IsLoading() const { |
clamy | 44e84ce | 2016-02-22 15:38:25 | [diff] [blame] | 1315 | return frame_tree_.IsLoading() && |
creis | adca986 | 2017-06-16 19:12:11 | [diff] [blame] | 1316 | !(ShowingInterstitialPage() && interstitial_page_->pause_throbber()); |
[email protected] | 3c9e187 | 2010-11-18 16:17:49 | [diff] [blame] | 1317 | } |
| 1318 | |
[email protected] | 6dfed69 | 2014-05-22 04:18:03 | [diff] [blame] | 1319 | bool WebContentsImpl::IsLoadingToDifferentDocument() const { |
clamy | 44e84ce | 2016-02-22 15:38:25 | [diff] [blame] | 1320 | return IsLoading() && is_load_to_different_document_; |
[email protected] | 6dfed69 | 2014-05-22 04:18:03 | [diff] [blame] | 1321 | } |
| 1322 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 1323 | bool WebContentsImpl::IsWaitingForResponse() const { |
[email protected] | 6dfed69 | 2014-05-22 04:18:03 | [diff] [blame] | 1324 | return waiting_for_response_ && is_load_to_different_document_; |
[email protected] | be1f56ab | 2011-12-22 06:55:31 | [diff] [blame] | 1325 | } |
| 1326 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 1327 | const net::LoadStateWithParam& WebContentsImpl::GetLoadState() const { |
[email protected] | be1f56ab | 2011-12-22 06:55:31 | [diff] [blame] | 1328 | return load_state_; |
| 1329 | } |
| 1330 | |
[email protected] | fcf75d4 | 2013-12-03 20:11:26 | [diff] [blame] | 1331 | const base::string16& WebContentsImpl::GetLoadStateHost() const { |
[email protected] | be1f56ab | 2011-12-22 06:55:31 | [diff] [blame] | 1332 | return load_state_host_; |
| 1333 | } |
| 1334 | |
avi | b734894 | 2015-12-25 20:57:10 | [diff] [blame] | 1335 | uint64_t WebContentsImpl::GetUploadSize() const { |
[email protected] | be1f56ab | 2011-12-22 06:55:31 | [diff] [blame] | 1336 | return upload_size_; |
| 1337 | } |
| 1338 | |
avi | b734894 | 2015-12-25 20:57:10 | [diff] [blame] | 1339 | uint64_t WebContentsImpl::GetUploadPosition() const { |
[email protected] | be1f56ab | 2011-12-22 06:55:31 | [diff] [blame] | 1340 | return upload_position_; |
| 1341 | } |
| 1342 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 1343 | const std::string& WebContentsImpl::GetEncoding() const { |
[email protected] | ef3adfc | 2014-05-11 00:04:54 | [diff] [blame] | 1344 | return canonical_encoding_; |
[email protected] | be1f56ab | 2011-12-22 06:55:31 | [diff] [blame] | 1345 | } |
| 1346 | |
Shubhie Panicker | ddf2a4e | 2018-03-06 00:09:06 | [diff] [blame] | 1347 | void WebContentsImpl::SetWasDiscarded(bool was_discarded) { |
| 1348 | GetFrameTree()->root()->set_was_discarded(); |
| 1349 | } |
| 1350 | |
[email protected] | 222f582 | 2014-02-05 23:40:49 | [diff] [blame] | 1351 | void WebContentsImpl::IncrementCapturerCount(const gfx::Size& capture_size) { |
[email protected] | 5a65223 | 2013-02-12 06:15:25 | [diff] [blame] | 1352 | DCHECK(!is_being_destroyed_); |
Francois Doray | e616115 | 2018-03-27 22:05:37 | [diff] [blame] | 1353 | const bool was_captured = IsBeingCaptured(); |
[email protected] | 5459798 | 2013-02-06 01:59:55 | [diff] [blame] | 1354 | ++capturer_count_; |
| 1355 | DVLOG(1) << "There are now " << capturer_count_ |
| 1356 | << " capturing(s) of WebContentsImpl@" << this; |
[email protected] | 222f582 | 2014-02-05 23:40:49 | [diff] [blame] | 1357 | |
| 1358 | // Note: This provides a hint to upstream code to size the views optimally |
| 1359 | // for quality (e.g., to avoid scaling). |
| 1360 | if (!capture_size.IsEmpty() && preferred_size_for_capture_.IsEmpty()) { |
| 1361 | preferred_size_for_capture_ = capture_size; |
| 1362 | OnPreferredSizeChanged(preferred_size_); |
| 1363 | } |
ccameron | 8807c38f | 2015-01-17 00:29:19 | [diff] [blame] | 1364 | |
Francois Doray | e616115 | 2018-03-27 22:05:37 | [diff] [blame] | 1365 | if (GetVisibility() != Visibility::VISIBLE && !was_captured) { |
| 1366 | // Ensure that all views act as if they were visible before capture begins. |
| 1367 | // TODO(fdoray): Replace RenderWidgetHostView::WasUnOccluded() with a method |
| 1368 | // to explicitly notify the RenderWidgetHostView that capture began. |
| 1369 | // https://crbug.com/668690 |
| 1370 | for (RenderWidgetHostView* view : GetRenderWidgetHostViewsInTree()) |
| 1371 | view->WasUnOccluded(); |
| 1372 | } |
[email protected] | 5459798 | 2013-02-06 01:59:55 | [diff] [blame] | 1373 | } |
| 1374 | |
| 1375 | void WebContentsImpl::DecrementCapturerCount() { |
| 1376 | --capturer_count_; |
| 1377 | DVLOG(1) << "There are now " << capturer_count_ |
| 1378 | << " capturing(s) of WebContentsImpl@" << this; |
| 1379 | DCHECK_LE(0, capturer_count_); |
| 1380 | |
[email protected] | 5a65223 | 2013-02-12 06:15:25 | [diff] [blame] | 1381 | if (is_being_destroyed_) |
| 1382 | return; |
| 1383 | |
Francois Doray | 24fc62c | 2017-12-11 17:27:33 | [diff] [blame] | 1384 | if (!IsBeingCaptured()) { |
[email protected] | 222f582 | 2014-02-05 23:40:49 | [diff] [blame] | 1385 | const gfx::Size old_size = preferred_size_for_capture_; |
| 1386 | preferred_size_for_capture_ = gfx::Size(); |
| 1387 | OnPreferredSizeChanged(old_size); |
[email protected] | 222f582 | 2014-02-05 23:40:49 | [diff] [blame] | 1388 | |
Francois Doray | e616115 | 2018-03-27 22:05:37 | [diff] [blame] | 1389 | if (visibility_ == Visibility::HIDDEN) { |
Francois Doray | 1880097 | 2017-08-25 22:38:58 | [diff] [blame] | 1390 | DVLOG(1) << "Executing delayed WasHidden()."; |
| 1391 | WasHidden(); |
Francois Doray | e616115 | 2018-03-27 22:05:37 | [diff] [blame] | 1392 | } else if (visibility_ == Visibility::OCCLUDED) { |
Mitsuru Oshima | 04a8024 | 2018-03-03 03:06:15 | [diff] [blame] | 1393 | WasOccluded(); |
Francois Doray | e616115 | 2018-03-27 22:05:37 | [diff] [blame] | 1394 | } |
[email protected] | 5459798 | 2013-02-06 01:59:55 | [diff] [blame] | 1395 | } |
[email protected] | be1f56ab | 2011-12-22 06:55:31 | [diff] [blame] | 1396 | } |
| 1397 | |
Francois Doray | 24fc62c | 2017-12-11 17:27:33 | [diff] [blame] | 1398 | bool WebContentsImpl::IsBeingCaptured() const { |
| 1399 | return capturer_count_ > 0; |
[email protected] | f2bd4081 | 2013-07-20 04:30:44 | [diff] [blame] | 1400 | } |
| 1401 | |
miu | 50f9789 | 2014-09-22 22:49:52 | [diff] [blame] | 1402 | bool WebContentsImpl::IsAudioMuted() const { |
| 1403 | return audio_muter_.get() && audio_muter_->is_muting(); |
| 1404 | } |
| 1405 | |
| 1406 | void WebContentsImpl::SetAudioMuted(bool mute) { |
| 1407 | DVLOG(1) << "SetAudioMuted(mute=" << mute << "), was " << IsAudioMuted() |
| 1408 | << " for WebContentsImpl@" << this; |
| 1409 | |
| 1410 | if (mute == IsAudioMuted()) |
| 1411 | return; |
| 1412 | |
| 1413 | if (mute) { |
| 1414 | if (!audio_muter_) |
| 1415 | audio_muter_.reset(new WebContentsAudioMuter(this)); |
| 1416 | audio_muter_->StartMuting(); |
| 1417 | } else { |
| 1418 | DCHECK(audio_muter_); |
| 1419 | audio_muter_->StopMuting(); |
| 1420 | } |
| 1421 | |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 1422 | for (auto& observer : observers_) |
| 1423 | observer.DidUpdateAudioMutingState(mute); |
wjmaclean | 2f797c78 | 2016-01-07 14:52:03 | [diff] [blame] | 1424 | |
Jan Rucka | 442c83f | 2017-08-08 13:27:54 | [diff] [blame] | 1425 | // Notification for UI updates in response to the changed muting state. |
| 1426 | NotifyNavigationStateChanged(INVALIDATE_TYPE_TAB); |
| 1427 | } |
| 1428 | |
| 1429 | bool WebContentsImpl::IsCurrentlyAudible() { |
| 1430 | return audio_stream_monitor()->IsCurrentlyAudible(); |
miu | 50f9789 | 2014-09-22 22:49:52 | [diff] [blame] | 1431 | } |
| 1432 | |
ortuno | df4d798 | 2016-04-08 02:33:35 | [diff] [blame] | 1433 | bool WebContentsImpl::IsConnectedToBluetoothDevice() const { |
| 1434 | return bluetooth_connected_device_count_ > 0; |
ortuno | 32e7db3c | 2016-03-29 16:14:20 | [diff] [blame] | 1435 | } |
| 1436 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 1437 | bool WebContentsImpl::IsCrashed() const { |
[email protected] | be1f56ab | 2011-12-22 06:55:31 | [diff] [blame] | 1438 | return (crashed_status_ == base::TERMINATION_STATUS_PROCESS_CRASHED || |
| 1439 | crashed_status_ == base::TERMINATION_STATUS_ABNORMAL_TERMINATION || |
wfh | 0d9532a | 2015-09-02 23:18:58 | [diff] [blame] | 1440 | crashed_status_ == base::TERMINATION_STATUS_PROCESS_WAS_KILLED || |
oshima | 62022572 | 2015-06-04 19:45:27 | [diff] [blame] | 1441 | #if defined(OS_CHROMEOS) |
wfh | 0d9532a | 2015-09-02 23:18:58 | [diff] [blame] | 1442 | crashed_status_ == |
| 1443 | base::TERMINATION_STATUS_PROCESS_WAS_KILLED_BY_OOM || |
oshima | 62022572 | 2015-06-04 19:45:27 | [diff] [blame] | 1444 | #endif |
rkaplow | e56a5203 | 2017-02-07 00:14:54 | [diff] [blame] | 1445 | crashed_status_ == base::TERMINATION_STATUS_LAUNCH_FAILED); |
[email protected] | 3c9e187 | 2010-11-18 16:17:49 | [diff] [blame] | 1446 | } |
| 1447 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 1448 | void WebContentsImpl::SetIsCrashed(base::TerminationStatus status, |
| 1449 | int error_code) { |
[email protected] | 443b80e | 2010-12-14 00:42:23 | [diff] [blame] | 1450 | if (status == crashed_status_) |
[email protected] | d5f942ba | 2008-09-26 19:30:34 | [diff] [blame] | 1451 | return; |
| 1452 | |
[email protected] | 443b80e | 2010-12-14 00:42:23 | [diff] [blame] | 1453 | crashed_status_ = status; |
| 1454 | crashed_error_code_ = error_code; |
[email protected] | 8ff00d7 | 2012-10-23 19:12:21 | [diff] [blame] | 1455 | NotifyNavigationStateChanged(INVALIDATE_TYPE_TAB); |
[email protected] | d5f942ba | 2008-09-26 19:30:34 | [diff] [blame] | 1456 | } |
| 1457 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 1458 | base::TerminationStatus WebContentsImpl::GetCrashedStatus() const { |
[email protected] | be1f56ab | 2011-12-22 06:55:31 | [diff] [blame] | 1459 | return crashed_status_; |
| 1460 | } |
| 1461 | |
afakhry | 9824183 | 2016-03-11 19:27:47 | [diff] [blame] | 1462 | int WebContentsImpl::GetCrashedErrorCode() const { |
| 1463 | return crashed_error_code_; |
| 1464 | } |
| 1465 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 1466 | bool WebContentsImpl::IsBeingDestroyed() const { |
[email protected] | be1f56ab | 2011-12-22 06:55:31 | [diff] [blame] | 1467 | return is_being_destroyed_; |
| 1468 | } |
| 1469 | |
[email protected] | 7f92483 | 2014-08-09 05:57:22 | [diff] [blame] | 1470 | void WebContentsImpl::NotifyNavigationStateChanged( |
| 1471 | InvalidateTypes changed_flags) { |
dalecurtis | 88c24007 | 2015-12-09 02:11:18 | [diff] [blame] | 1472 | // Notify the media observer of potential audibility changes. |
| 1473 | if (changed_flags & INVALIDATE_TYPE_TAB) { |
mlamouri | 44e4ef4 | 2016-01-20 18:42:27 | [diff] [blame] | 1474 | media_web_contents_observer_->MaybeUpdateAudibleState(); |
dalecurtis | bc6572e1 | 2014-09-12 19:22:30 | [diff] [blame] | 1475 | } |
| 1476 | |
[email protected] | d5f942ba | 2008-09-26 19:30:34 | [diff] [blame] | 1477 | if (delegate_) |
| 1478 | delegate_->NavigationStateChanged(this, changed_flags); |
wjmaclean | 1dabf3e3 | 2016-05-13 23:34:44 | [diff] [blame] | 1479 | |
| 1480 | if (GetOuterWebContents()) |
| 1481 | GetOuterWebContents()->NotifyNavigationStateChanged(changed_flags); |
[email protected] | d5f942ba | 2008-09-26 19:30:34 | [diff] [blame] | 1482 | } |
| 1483 | |
altimin | ec87fd1f | 2016-11-17 20:22:49 | [diff] [blame] | 1484 | void WebContentsImpl::OnAudioStateChanged(bool is_audible) { |
| 1485 | SendPageMessage(new PageMsg_AudioStateChanged(MSG_ROUTING_NONE, is_audible)); |
altimin | d8bd26c | 2016-11-04 11:44:54 | [diff] [blame] | 1486 | |
altimin | ec87fd1f | 2016-11-17 20:22:49 | [diff] [blame] | 1487 | // Notification for UI updates in response to the changed audio state. |
altimin | d8bd26c | 2016-11-04 11:44:54 | [diff] [blame] | 1488 | NotifyNavigationStateChanged(INVALIDATE_TYPE_TAB); |
Jan Rucka | 442c83f | 2017-08-08 13:27:54 | [diff] [blame] | 1489 | |
Tommy Steimel | 1836051 | 2017-11-01 00:38:19 | [diff] [blame] | 1490 | was_ever_audible_ = was_ever_audible_ || is_audible; |
| 1491 | |
Jan Rucka | 442c83f | 2017-08-08 13:27:54 | [diff] [blame] | 1492 | if (delegate_) |
Tommy Steimel | 0cafb39d | 2017-10-23 22:19:08 | [diff] [blame] | 1493 | delegate_->OnAudioStateChanged(this, is_audible); |
altimin | d8bd26c | 2016-11-04 11:44:54 | [diff] [blame] | 1494 | } |
| 1495 | |
gab | 0dccfef | 2015-05-20 18:43:39 | [diff] [blame] | 1496 | base::TimeTicks WebContentsImpl::GetLastActiveTime() const { |
[email protected] | 9a89045 | 2014-02-13 22:21:02 | [diff] [blame] | 1497 | return last_active_time_; |
[email protected] | 3e32414 | 2012-06-25 18:26:33 | [diff] [blame] | 1498 | } |
| 1499 | |
georgesak | 5582cbe | 2015-05-22 22:08:07 | [diff] [blame] | 1500 | void WebContentsImpl::SetLastActiveTime(base::TimeTicks last_active_time) { |
| 1501 | last_active_time_ = last_active_time; |
| 1502 | } |
| 1503 | |
[email protected] | 9e2e463 | 2012-07-27 16:38:41 | [diff] [blame] | 1504 | void WebContentsImpl::WasShown() { |
[email protected] | 96d185d | 2009-04-24 03:28:54 | [diff] [blame] | 1505 | controller_.SetActive(true); |
[email protected] | de3c5d8 | 2014-05-28 22:12:59 | [diff] [blame] | 1506 | |
EhsanK | 2075c7e | 2017-08-21 02:42:39 | [diff] [blame] | 1507 | if (auto* view = GetRenderWidgetHostView()) { |
lfg | f949e0e | 2017-05-10 22:18:11 | [diff] [blame] | 1508 | view->Show(); |
[email protected] | 789e915 | 2009-08-04 21:59:43 | [diff] [blame] | 1509 | #if defined(OS_MACOSX) |
lfg | f949e0e | 2017-05-10 22:18:11 | [diff] [blame] | 1510 | view->SetActive(true); |
[email protected] | 789e915 | 2009-08-04 21:59:43 | [diff] [blame] | 1511 | #endif |
| 1512 | } |
[email protected] | 96d185d | 2009-04-24 03:28:54 | [diff] [blame] | 1513 | |
EhsanK | 2075c7e | 2017-08-21 02:42:39 | [diff] [blame] | 1514 | if (!ShowingInterstitialPage()) |
| 1515 | SetVisibilityForChildViews(true); |
| 1516 | |
lfg | 71715407 | 2016-06-30 15:04:16 | [diff] [blame] | 1517 | SendPageMessage(new PageMsg_WasShown(MSG_ROUTING_NONE)); |
| 1518 | |
gab | 0dccfef | 2015-05-20 18:43:39 | [diff] [blame] | 1519 | last_active_time_ = base::TimeTicks::Now(); |
Francois Doray | e616115 | 2018-03-27 22:05:37 | [diff] [blame] | 1520 | SetVisibility(Visibility::VISIBLE); |
[email protected] | be1f56ab | 2011-12-22 06:55:31 | [diff] [blame] | 1521 | } |
| 1522 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 1523 | void WebContentsImpl::WasHidden() { |
[email protected] | 5459798 | 2013-02-06 01:59:55 | [diff] [blame] | 1524 | // If there are entities capturing screenshots or video (e.g., mirroring), |
| 1525 | // don't activate the "disable rendering" optimization. |
Francois Doray | 24fc62c | 2017-12-11 17:27:33 | [diff] [blame] | 1526 | if (!IsBeingCaptured()) { |
[email protected] | 151a63d | 2011-12-20 22:32:52 | [diff] [blame] | 1527 | // |GetRenderViewHost()| can be NULL if the user middle clicks a link to |
[email protected] | 5459798 | 2013-02-06 01:59:55 | [diff] [blame] | 1528 | // open a tab in the background, then closes the tab before selecting it. |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 1529 | // This is because closing the tab calls WebContentsImpl::Destroy(), which |
[email protected] | 151a63d | 2011-12-20 22:32:52 | [diff] [blame] | 1530 | // removes the |GetRenderViewHost()|; then when we actually destroy the |
[email protected] | 3e32414 | 2012-06-25 18:26:33 | [diff] [blame] | 1531 | // window, OnWindowPosChanged() notices and calls WasHidden() (which |
[email protected] | 151a63d | 2011-12-20 22:32:52 | [diff] [blame] | 1532 | // calls us). |
EhsanK | 2075c7e | 2017-08-21 02:42:39 | [diff] [blame] | 1533 | if (auto* view = GetRenderWidgetHostView()) |
lfg | f949e0e | 2017-05-10 22:18:11 | [diff] [blame] | 1534 | view->Hide(); |
lfg | 71715407 | 2016-06-30 15:04:16 | [diff] [blame] | 1535 | |
EhsanK | 2075c7e | 2017-08-21 02:42:39 | [diff] [blame] | 1536 | if (!ShowingInterstitialPage()) |
Igor Eremeev | ef59187a | 2017-09-29 00:25:42 | [diff] [blame] | 1537 | SetVisibilityForChildViews(false); |
EhsanK | 2075c7e | 2017-08-21 02:42:39 | [diff] [blame] | 1538 | |
lfg | 71715407 | 2016-06-30 15:04:16 | [diff] [blame] | 1539 | SendPageMessage(new PageMsg_WasHidden(MSG_ROUTING_NONE)); |
[email protected] | 96d185d | 2009-04-24 03:28:54 | [diff] [blame] | 1540 | } |
| 1541 | |
Francois Doray | e616115 | 2018-03-27 22:05:37 | [diff] [blame] | 1542 | SetVisibility(Visibility::HIDDEN); |
[email protected] | 375fa1b | 2012-05-22 22:05:37 | [diff] [blame] | 1543 | } |
| 1544 | |
Daniel Cheng | 90196c8 | 2018-04-25 21:49:14 | [diff] [blame] | 1545 | bool WebContentsImpl::HasRecentInteractiveInputEvent() const { |
| 1546 | static constexpr base::TimeDelta kMaxInterval = |
| 1547 | base::TimeDelta::FromSeconds(5); |
| 1548 | base::TimeDelta delta = |
| 1549 | ui::EventTimeForNow() - last_interactive_input_event_time_; |
| 1550 | // Note: the expectation is that the caller is typically expecting an input |
| 1551 | // event, e.g. validating that a WebUI message that requires a gesture is |
| 1552 | // actually attached to a gesture. Logging to UMA here should hopefully give |
| 1553 | // sufficient data if 5 seconds is actually sufficient (or even too high a |
| 1554 | // threshhold). |
| 1555 | UMA_HISTOGRAM_TIMES("Tabs.TimeSinceLastInteraction", delta); |
| 1556 | return delta <= kMaxInterval; |
| 1557 | } |
| 1558 | |
Bo Liu | 168c864 | 2017-08-28 18:26:02 | [diff] [blame] | 1559 | #if defined(OS_ANDROID) |
Bo Liu | 16dd7b832 | 2018-05-02 21:19:50 | [diff] [blame] | 1560 | void WebContentsImpl::SetMainFrameImportance( |
| 1561 | ChildProcessImportance importance) { |
| 1562 | GetMainFrame()->GetRenderWidgetHost()->SetImportance(importance); |
Bo Liu | 7c6779e9 | 2017-08-16 02:02:28 | [diff] [blame] | 1563 | if (ShowingInterstitialPage()) { |
Bo Liu | 16dd7b832 | 2018-05-02 21:19:50 | [diff] [blame] | 1564 | static_cast<RenderFrameHostImpl*>(interstitial_page_->GetMainFrame()) |
| 1565 | ->GetRenderWidgetHost() |
| 1566 | ->SetImportance(importance); |
Bo Liu | 7c6779e9 | 2017-08-16 02:02:28 | [diff] [blame] | 1567 | } |
Bo Liu | 7c6779e9 | 2017-08-16 02:02:28 | [diff] [blame] | 1568 | } |
Bo Liu | 168c864 | 2017-08-28 18:26:02 | [diff] [blame] | 1569 | #endif |
Bo Liu | 7c6779e9 | 2017-08-16 02:02:28 | [diff] [blame] | 1570 | |
ccameron | 8807c38f | 2015-01-17 00:29:19 | [diff] [blame] | 1571 | void WebContentsImpl::WasOccluded() { |
Francois Doray | 24fc62c | 2017-12-11 17:27:33 | [diff] [blame] | 1572 | if (!IsBeingCaptured()) { |
Francois Doray | 1880097 | 2017-08-25 22:38:58 | [diff] [blame] | 1573 | for (RenderWidgetHostView* view : GetRenderWidgetHostViewsInTree()) |
| 1574 | view->WasOccluded(); |
| 1575 | } |
Francois Doray | e616115 | 2018-03-27 22:05:37 | [diff] [blame] | 1576 | SetVisibility(Visibility::OCCLUDED); |
ccameron | 8807c38f | 2015-01-17 00:29:19 | [diff] [blame] | 1577 | } |
| 1578 | |
Francois Doray | fe4a177 | 2018-02-17 04:17:09 | [diff] [blame] | 1579 | Visibility WebContentsImpl::GetVisibility() const { |
Francois Doray | e616115 | 2018-03-27 22:05:37 | [diff] [blame] | 1580 | return visibility_; |
Francois Doray | fe4a177 | 2018-02-17 04:17:09 | [diff] [blame] | 1581 | } |
| 1582 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 1583 | bool WebContentsImpl::NeedToFireBeforeUnload() { |
[email protected] | be1f56ab | 2011-12-22 06:55:31 | [diff] [blame] | 1584 | // TODO(creis): Should we fire even for interstitial pages? |
creis | c014b40 | 2015-04-23 16:41:45 | [diff] [blame] | 1585 | return WillNotifyDisconnection() && !ShowingInterstitialPage() && |
jam | 4044498 | 2017-04-11 03:01:41 | [diff] [blame] | 1586 | !GetRenderViewHost()->SuddenTerminationAllowed(); |
[email protected] | be1f56ab | 2011-12-22 06:55:31 | [diff] [blame] | 1587 | } |
| 1588 | |
nasko | 148bb0b9 | 2016-05-10 21:03:19 | [diff] [blame] | 1589 | void WebContentsImpl::DispatchBeforeUnload() { |
| 1590 | bool for_cross_site_transition = false; |
clamy | bfd6a81 | 2016-05-30 16:25:17 | [diff] [blame] | 1591 | GetMainFrame()->DispatchBeforeUnload(for_cross_site_transition, false); |
[email protected] | 1c3f80bd | 2014-04-08 23:02:06 | [diff] [blame] | 1592 | } |
| 1593 | |
lazyboy | 6ec48b2a | 2015-06-29 15:18:14 | [diff] [blame] | 1594 | void WebContentsImpl::AttachToOuterWebContentsFrame( |
| 1595 | WebContents* outer_web_contents, |
| 1596 | RenderFrameHost* outer_contents_frame) { |
ekaramad | 1beabecc | 2016-09-23 20:18:17 | [diff] [blame] | 1597 | CHECK(GuestMode::IsCrossProcessFrameGuest(this)); |
lfg | 91a79e1 | 2016-04-01 23:52:19 | [diff] [blame] | 1598 | RenderFrameHostManager* render_manager = GetRenderManager(); |
| 1599 | |
| 1600 | // When the WebContents being initialized has an opener, the browser side |
| 1601 | // Render{View,Frame}Host must be initialized and the RenderWidgetHostView |
| 1602 | // created. This is needed because the usual initialization happens during |
| 1603 | // the first navigation, but when attaching a new window we don't navigate |
| 1604 | // before attaching. If the browser side is already initialized, the calls |
| 1605 | // below will just early return. |
| 1606 | render_manager->InitRenderView(GetRenderViewHost(), nullptr); |
| 1607 | GetMainFrame()->Init(); |
| 1608 | if (!render_manager->GetRenderWidgetHostView()) |
| 1609 | CreateRenderWidgetHostViewForRenderManager(GetRenderViewHost()); |
| 1610 | |
avallee | 7529b2a | 2017-04-26 11:37:51 | [diff] [blame] | 1611 | auto* outer_web_contents_impl = |
| 1612 | static_cast<WebContentsImpl*>(outer_web_contents); |
| 1613 | auto* outer_contents_frame_impl = |
| 1614 | static_cast<RenderFrameHostImpl*>(outer_contents_frame); |
lazyboy | 6ec48b2a | 2015-06-29 15:18:14 | [diff] [blame] | 1615 | // Create a link to our outer WebContents. |
avallee | 7529b2a | 2017-04-26 11:37:51 | [diff] [blame] | 1616 | node_.ConnectToOuterWebContents(outer_web_contents_impl, |
| 1617 | outer_contents_frame_impl); |
lazyboy | 6ec48b2a | 2015-06-29 15:18:14 | [diff] [blame] | 1618 | |
| 1619 | DCHECK(outer_contents_frame); |
| 1620 | |
| 1621 | // Create a proxy in top-level RenderFrameHostManager, pointing to the |
| 1622 | // SiteInstance of the outer WebContents. The proxy will be used to send |
| 1623 | // postMessage to the inner WebContents. |
lfg | 91a79e1 | 2016-04-01 23:52:19 | [diff] [blame] | 1624 | render_manager->CreateOuterDelegateProxy( |
avallee | 7529b2a | 2017-04-26 11:37:51 | [diff] [blame] | 1625 | outer_contents_frame->GetSiteInstance(), outer_contents_frame_impl); |
lazyboy | 6ec48b2a | 2015-06-29 15:18:14 | [diff] [blame] | 1626 | |
Lucas Furukawa Gadani | aed1fed | 2017-10-13 17:34:14 | [diff] [blame] | 1627 | ReattachToOuterWebContentsFrame(); |
ekaramad | add88229 | 2016-06-08 15:22:56 | [diff] [blame] | 1628 | |
avallee | 7529b2a | 2017-04-26 11:37:51 | [diff] [blame] | 1629 | if (outer_web_contents_impl->frame_tree_.GetFocusedFrame() == |
| 1630 | outer_contents_frame_impl->frame_tree_node()) { |
Lucas Furukawa Gadani | abbfa34 | 2017-08-29 19:37:57 | [diff] [blame] | 1631 | SetFocusedFrame(frame_tree_.root(), |
| 1632 | outer_contents_frame->GetSiteInstance()); |
avallee | 7529b2a | 2017-04-26 11:37:51 | [diff] [blame] | 1633 | } |
| 1634 | |
ekaramad | add88229 | 2016-06-08 15:22:56 | [diff] [blame] | 1635 | // At this point, we should destroy the TextInputManager which will notify all |
| 1636 | // the RWHV in this WebContents. The RWHV in this WebContents should use the |
| 1637 | // TextInputManager owned by the outer WebContents. |
| 1638 | // TODO(ekaramad): Is it possible to have TextInputState before attaching to |
| 1639 | // outer WebContents? In such a case, is this still the right way to hand off |
| 1640 | // state tracking from inner WebContents's TextInputManager to that of the |
| 1641 | // outer WebContent (crbug.com/609846)? |
| 1642 | text_input_manager_.reset(nullptr); |
lazyboy | 6ec48b2a | 2015-06-29 15:18:14 | [diff] [blame] | 1643 | } |
| 1644 | |
Lucas Furukawa Gadani | aed1fed | 2017-10-13 17:34:14 | [diff] [blame] | 1645 | void WebContentsImpl::ReattachToOuterWebContentsFrame() { |
| 1646 | DCHECK(node_.outer_web_contents()); |
| 1647 | auto* render_manager = GetRenderManager(); |
| 1648 | auto* parent_frame = |
| 1649 | node_.OuterContentsFrameTreeNode()->current_frame_host()->GetParent(); |
| 1650 | render_manager->SetRWHViewForInnerContents( |
| 1651 | render_manager->GetRenderWidgetHostView()); |
| 1652 | |
| 1653 | static_cast<RenderWidgetHostViewChildFrame*>( |
| 1654 | render_manager->GetRenderWidgetHostView()) |
| 1655 | ->RegisterFrameSinkId(); |
| 1656 | |
| 1657 | // Set up the the guest's AX tree to point back at the embedder's AX tree. |
| 1658 | GetMainFrame()->set_browser_plugin_embedder_ax_tree_id( |
| 1659 | parent_frame->GetAXTreeID()); |
| 1660 | GetMainFrame()->UpdateAXTreeData(); |
| 1661 | } |
| 1662 | |
dalecurtis | 6c58ed0 | 2016-10-28 23:02:37 | [diff] [blame] | 1663 | void WebContentsImpl::DidChangeVisibleSecurityState() { |
| 1664 | if (delegate_) { |
| 1665 | delegate_->VisibleSecurityStateChanged(this); |
cjgrant | 6d1d727a | 2016-12-09 21:16:57 | [diff] [blame] | 1666 | for (auto& observer : observers_) |
| 1667 | observer.DidChangeVisibleSecurityState(); |
dalecurtis | 6c58ed0 | 2016-10-28 23:02:37 | [diff] [blame] | 1668 | } |
| 1669 | } |
| 1670 | |
Ahmed Fakhry | d70bf37b | 2018-04-04 17:07:24 | [diff] [blame] | 1671 | void WebContentsImpl::NotifyPreferencesChanged() { |
| 1672 | std::set<RenderViewHost*> render_view_host_set; |
| 1673 | for (FrameTreeNode* node : frame_tree_.Nodes()) { |
Giovanni Ortuño Urquidi | 17a5d7c | 2018-04-30 06:48:53 | [diff] [blame] | 1674 | render_view_host_set.insert( |
| 1675 | node->current_frame_host()->GetRenderViewHost()); |
Ahmed Fakhry | d70bf37b | 2018-04-04 17:07:24 | [diff] [blame] | 1676 | } |
Giovanni Ortuño Urquidi | 17a5d7c | 2018-04-30 06:48:53 | [diff] [blame] | 1677 | |
Ahmed Fakhry | d70bf37b | 2018-04-04 17:07:24 | [diff] [blame] | 1678 | for (RenderViewHost* render_view_host : render_view_host_set) |
| 1679 | render_view_host->OnWebkitPreferencesChanged(); |
| 1680 | } |
| 1681 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 1682 | void WebContentsImpl::Stop() { |
dcheng | 57e39e2 | 2016-01-21 00:25:38 | [diff] [blame] | 1683 | for (FrameTreeNode* node : frame_tree_.Nodes()) |
| 1684 | node->StopLoading(); |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 1685 | for (auto& observer : observers_) |
| 1686 | observer.NavigationStopped(); |
[email protected] | 0bfbf88 | 2011-12-22 18:19:27 | [diff] [blame] | 1687 | } |
| 1688 | |
Fadi Meawad | a6573e0 | 2018-03-10 00:52:11 | [diff] [blame] | 1689 | void WebContentsImpl::FreezePage() { |
| 1690 | SendPageMessage(new PageMsg_FreezePage(MSG_ROUTING_NONE)); |
| 1691 | } |
| 1692 | |
erikchen | 6c7df7f7a | 2018-05-03 18:13:59 | [diff] [blame] | 1693 | std::unique_ptr<WebContents> WebContentsImpl::Clone() { |
[email protected] | 14392a5 | 2012-05-02 20:28:44 | [diff] [blame] | 1694 | // We use our current SiteInstance since the cloned entry will use it anyway. |
alexmos | e201c7cd | 2015-06-10 17:14:21 | [diff] [blame] | 1695 | // We pass our own opener so that the cloned page can access it if it was set |
[email protected] | ed245db | 2012-12-18 08:00:45 | [diff] [blame] | 1696 | // before. |
[email protected] | 54944cde | 2012-12-09 09:24:59 | [diff] [blame] | 1697 | CreateParams create_params(GetBrowserContext(), GetSiteInstance()); |
[email protected] | fc2b46b | 2014-05-03 16:33:45 | [diff] [blame] | 1698 | create_params.initial_size = GetContainerBounds().size(); |
Ian Clelland | 5cbaaf8 | 2017-11-27 22:00:03 | [diff] [blame] | 1699 | FrameTreeNode* opener = frame_tree_.root()->opener(); |
| 1700 | RenderFrameHostImpl* opener_rfh = nullptr; |
| 1701 | if (opener) |
| 1702 | opener_rfh = opener->current_frame_host(); |
erikchen | 6c7df7f7a | 2018-05-03 18:13:59 | [diff] [blame] | 1703 | std::unique_ptr<WebContentsImpl> tc = |
erikchen | 50735fd | 2018-05-05 15:08:33 | [diff] [blame^] | 1704 | CreateWithOpener(create_params, opener_rfh); |
Francois Doray | eaace78 | 2017-06-21 16:37:24 | [diff] [blame] | 1705 | tc->GetController().CopyStateFrom(controller_, true); |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 1706 | for (auto& observer : observers_) |
erikchen | 6c7df7f7a | 2018-05-03 18:13:59 | [diff] [blame] | 1707 | observer.DidCloneToNewWebContents(this, tc.get()); |
[email protected] | 0bfbf88 | 2011-12-22 18:19:27 | [diff] [blame] | 1708 | return tc; |
| 1709 | } |
| 1710 | |
[email protected] | 14392a5 | 2012-05-02 20:28:44 | [diff] [blame] | 1711 | void WebContentsImpl::Observe(int type, |
[email protected] | 8ff00d7 | 2012-10-23 19:12:21 | [diff] [blame] | 1712 | const NotificationSource& source, |
| 1713 | const NotificationDetails& details) { |
[email protected] | 14392a5 | 2012-05-02 20:28:44 | [diff] [blame] | 1714 | switch (type) { |
[email protected] | 8ff00d7 | 2012-10-23 19:12:21 | [diff] [blame] | 1715 | case NOTIFICATION_RENDER_WIDGET_HOST_DESTROYED: { |
| 1716 | RenderWidgetHost* host = Source<RenderWidgetHost>(source).ptr(); |
[email protected] | 0b43199 | 2014-06-24 00:08:03 | [diff] [blame] | 1717 | RenderWidgetHostView* view = host->GetView(); |
| 1718 | if (view == GetFullscreenRenderWidgetHostView()) { |
| 1719 | // We cannot just call view_->RestoreFocus() here. On some platforms, |
| 1720 | // attempting to focus the currently-invisible WebContentsView will be |
| 1721 | // flat-out ignored. Therefore, this boolean is used to track whether |
| 1722 | // we will request focus after the fullscreen widget has been |
| 1723 | // destroyed. |
| 1724 | fullscreen_widget_had_focus_at_shutdown_ = (view && view->HasFocus()); |
| 1725 | } else { |
alexmos | c2a8cec | 2016-05-23 22:19:53 | [diff] [blame] | 1726 | for (auto i = pending_widget_views_.begin(); |
[email protected] | 0b43199 | 2014-06-24 00:08:03 | [diff] [blame] | 1727 | i != pending_widget_views_.end(); ++i) { |
| 1728 | if (host->GetView() == i->second) { |
| 1729 | pending_widget_views_.erase(i); |
| 1730 | break; |
| 1731 | } |
[email protected] | bafe6cd | 2012-05-23 23:09:50 | [diff] [blame] | 1732 | } |
| 1733 | } |
| 1734 | break; |
| 1735 | } |
[email protected] | 14392a5 | 2012-05-02 20:28:44 | [diff] [blame] | 1736 | default: |
| 1737 | NOTREACHED(); |
| 1738 | } |
| 1739 | } |
| 1740 | |
[email protected] | ec6c05f | 2013-10-23 18:41:57 | [diff] [blame] | 1741 | WebContents* WebContentsImpl::GetWebContents() { |
| 1742 | return this; |
| 1743 | } |
| 1744 | |
[email protected] | 54944cde | 2012-12-09 09:24:59 | [diff] [blame] | 1745 | void WebContentsImpl::Init(const WebContents::CreateParams& params) { |
[email protected] | fa944cb8 | 2013-11-15 17:51:21 | [diff] [blame] | 1746 | // This is set before initializing the render manager since |
[email protected] | b0936d2 | 2013-11-28 06:47:36 | [diff] [blame] | 1747 | // RenderFrameHostManager::Init calls back into us via its delegate to ask if |
[email protected] | fa944cb8 | 2013-11-15 17:51:21 | [diff] [blame] | 1748 | // it should be hidden. |
Francois Doray | e616115 | 2018-03-27 22:05:37 | [diff] [blame] | 1749 | visibility_ = |
| 1750 | params.initially_hidden ? Visibility::HIDDEN : Visibility::VISIBLE; |
[email protected] | d6fa88f | 2013-10-18 16:00:43 | [diff] [blame] | 1751 | |
dcheng | 3ce04b6 | 2015-10-26 23:30:55 | [diff] [blame] | 1752 | // The routing ids must either all be set or all be unset. |
avi | c2c29d78 | 2014-12-12 00:23:54 | [diff] [blame] | 1753 | DCHECK((params.routing_id == MSG_ROUTING_NONE && |
dcheng | 3ce04b6 | 2015-10-26 23:30:55 | [diff] [blame] | 1754 | params.main_frame_routing_id == MSG_ROUTING_NONE && |
| 1755 | params.main_frame_widget_routing_id == MSG_ROUTING_NONE) || |
avi | c2c29d78 | 2014-12-12 00:23:54 | [diff] [blame] | 1756 | (params.routing_id != MSG_ROUTING_NONE && |
dcheng | 3ce04b6 | 2015-10-26 23:30:55 | [diff] [blame] | 1757 | params.main_frame_routing_id != MSG_ROUTING_NONE && |
| 1758 | params.main_frame_widget_routing_id != MSG_ROUTING_NONE)); |
| 1759 | |
| 1760 | scoped_refptr<SiteInstance> site_instance = params.site_instance; |
| 1761 | if (!site_instance) |
| 1762 | site_instance = SiteInstance::Create(params.browser_context); |
| 1763 | |
| 1764 | // A main RenderFrameHost always has a RenderWidgetHost, since it is always a |
| 1765 | // local root by definition. |
| 1766 | // TODO(avi): Once RenderViewHostImpl has-a RenderWidgetHostImpl, it will no |
| 1767 | // longer be necessary to eagerly grab a routing ID for the view. |
| 1768 | // https://crbug.com/545684 |
| 1769 | int32_t view_routing_id = params.routing_id; |
| 1770 | int32_t main_frame_widget_routing_id = params.main_frame_widget_routing_id; |
| 1771 | if (main_frame_widget_routing_id == MSG_ROUTING_NONE) { |
| 1772 | view_routing_id = main_frame_widget_routing_id = |
| 1773 | site_instance->GetProcess()->GetNextRoutingID(); |
| 1774 | } |
| 1775 | |
Dave Tapuska | 485aca9 | 2017-08-08 00:47:58 | [diff] [blame] | 1776 | GetRenderManager()->Init( |
| 1777 | site_instance.get(), view_routing_id, params.main_frame_routing_id, |
| 1778 | main_frame_widget_routing_id, params.renderer_initiated_creation); |
lukasza | 464d869 | 2016-02-22 19:26:32 | [diff] [blame] | 1779 | |
lukasza | 5140a41 | 2016-09-15 21:12:30 | [diff] [blame] | 1780 | // blink::FrameTree::setName always keeps |unique_name| empty in case of a |
| 1781 | // main frame - let's do the same thing here. |
| 1782 | std::string unique_name; |
lukasza | 464d869 | 2016-02-22 19:26:32 | [diff] [blame] | 1783 | frame_tree_.root()->SetFrameName(params.main_frame_name, unique_name); |
[email protected] | d1198fd | 2012-08-13 22:50:19 | [diff] [blame] | 1784 | |
[email protected] | fc2b46b | 2014-05-03 16:33:45 | [diff] [blame] | 1785 | WebContentsViewDelegate* delegate = |
| 1786 | GetContentClient()->browser()->GetWebContentsViewDelegate(this); |
| 1787 | |
sky | 52a39e34 | 2016-12-17 17:23:22 | [diff] [blame] | 1788 | if (GuestMode::IsCrossProcessFrameGuest(this)) { |
| 1789 | view_.reset(new WebContentsViewChildFrame( |
| 1790 | this, delegate, &render_view_host_delegate_view_)); |
| 1791 | } else { |
| 1792 | view_.reset(CreateWebContentsView(this, delegate, |
| 1793 | &render_view_host_delegate_view_)); |
Scott Violet | c884c7fd | 2017-11-03 23:51:01 | [diff] [blame] | 1794 | if (browser_plugin_guest_) { |
| 1795 | view_ = std::make_unique<WebContentsViewGuest>( |
| 1796 | this, browser_plugin_guest_.get(), std::move(view_), |
| 1797 | &render_view_host_delegate_view_); |
| 1798 | } |
[email protected] | d1198fd | 2012-08-13 22:50:19 | [diff] [blame] | 1799 | } |
[email protected] | fc2b46b | 2014-05-03 16:33:45 | [diff] [blame] | 1800 | CHECK(render_view_host_delegate_view_); |
[email protected] | d1198fd | 2012-08-13 22:50:19 | [diff] [blame] | 1801 | CHECK(view_.get()); |
| 1802 | |
[email protected] | ed245db | 2012-12-18 08:00:45 | [diff] [blame] | 1803 | gfx::Size initial_size = params.initial_size; |
[email protected] | 54944cde | 2012-12-09 09:24:59 | [diff] [blame] | 1804 | view_->CreateView(initial_size, params.context); |
[email protected] | d1198fd | 2012-08-13 22:50:19 | [diff] [blame] | 1805 | |
brettw | 4b46108 | 2016-11-19 18:55:16 | [diff] [blame] | 1806 | #if BUILDFLAG(ENABLE_PLUGINS) |
tommycli | eb25b2a | 2014-11-03 19:45:09 | [diff] [blame] | 1807 | plugin_content_origin_whitelist_.reset( |
| 1808 | new PluginContentOriginWhitelist(this)); |
| 1809 | #endif |
| 1810 | |
[email protected] | d1198fd | 2012-08-13 22:50:19 | [diff] [blame] | 1811 | registrar_.Add(this, |
[email protected] | 8ff00d7 | 2012-10-23 19:12:21 | [diff] [blame] | 1812 | NOTIFICATION_RENDER_WIDGET_HOST_DESTROYED, |
| 1813 | NotificationService::AllBrowserContextsAndSources()); |
[email protected] | f28ef9a3 | 2014-05-12 16:36:10 | [diff] [blame] | 1814 | |
leon.han | e4db177a | 2017-02-07 14:19:16 | [diff] [blame] | 1815 | screen_orientation_provider_.reset(new ScreenOrientationProvider(this)); |
[email protected] | 01f83f9 | 2014-06-17 14:41:54 | [diff] [blame] | 1816 | |
mlamouri | efdca9d | 2014-09-16 16:55:40 | [diff] [blame] | 1817 | manifest_manager_host_.reset(new ManifestManagerHost(this)); |
| 1818 | |
mfomitchev | 2b8b066a | 2016-01-28 19:23:15 | [diff] [blame] | 1819 | #if defined(OS_ANDROID) |
[email protected] | 583418cc | 2013-01-17 14:01:10 | [diff] [blame] | 1820 | date_time_chooser_.reset(new DateTimeChooserAndroid()); |
| 1821 | #endif |
fsamuel | 7310a426 | 2014-12-05 05:06:44 | [diff] [blame] | 1822 | |
| 1823 | // BrowserPluginGuest::Init needs to be called after this WebContents has |
| 1824 | // a RenderWidgetHostViewGuest. That is, |view_->CreateView| above. |
| 1825 | if (browser_plugin_guest_) |
| 1826 | browser_plugin_guest_->Init(); |
nick | f9acfbe | 2014-12-23 19:12:37 | [diff] [blame] | 1827 | |
| 1828 | for (size_t i = 0; i < g_created_callbacks.Get().size(); i++) |
| 1829 | g_created_callbacks.Get().at(i).Run(this); |
nasko | b21fe487 | 2015-02-24 14:15:56 | [diff] [blame] | 1830 | |
| 1831 | // If the WebContents creation was renderer-initiated, it means that the |
| 1832 | // corresponding RenderView and main RenderFrame have already been created. |
| 1833 | // Ensure observers are notified about this. |
| 1834 | if (params.renderer_initiated_creation) { |
avi | 3627ecac | 2015-10-16 17:40:43 | [diff] [blame] | 1835 | GetRenderViewHost()->GetWidget()->set_renderer_initialized(true); |
Alex Moshchuk | 27caae8 | 2017-09-11 23:11:18 | [diff] [blame] | 1836 | GetRenderViewHost()->DispatchRenderViewCreated(); |
nasko | b21fe487 | 2015-02-24 14:15:56 | [diff] [blame] | 1837 | GetRenderManager()->current_frame_host()->SetRenderFrameCreated(true); |
| 1838 | } |
nasko | f5940b9f | 2015-03-02 23:04:05 | [diff] [blame] | 1839 | |
lof84 | 501da08 | 2016-05-23 21:22:54 | [diff] [blame] | 1840 | // Create the renderer process in advance if requested. |
| 1841 | if (params.initialize_renderer) { |
| 1842 | if (!GetRenderManager()->current_frame_host()->IsRenderFrameLive()) { |
| 1843 | GetRenderManager()->InitRenderView(GetRenderViewHost(), nullptr); |
| 1844 | } |
| 1845 | } |
| 1846 | |
nasko | f5940b9f | 2015-03-02 23:04:05 | [diff] [blame] | 1847 | // Ensure that observers are notified of the creation of this WebContents's |
| 1848 | // main RenderFrameHost. It must be done here for main frames, since the |
| 1849 | // NotifySwappedFromRenderManager expects view_ to already be created and that |
| 1850 | // happens after RenderFrameHostManager::Init. |
| 1851 | NotifySwappedFromRenderManager( |
| 1852 | nullptr, GetRenderManager()->current_frame_host(), true); |
[email protected] | d1198fd | 2012-08-13 22:50:19 | [diff] [blame] | 1853 | } |
| 1854 | |
[email protected] | 7fff43e | 2013-05-21 20:21:10 | [diff] [blame] | 1855 | void WebContentsImpl::OnWebContentsDestroyed(WebContentsImpl* web_contents) { |
| 1856 | RemoveDestructionObserver(web_contents); |
| 1857 | |
[email protected] | ceee8cd | 2013-03-08 04:59:51 | [diff] [blame] | 1858 | // Clear a pending contents that has been closed before being shown. |
alexmos | c2a8cec | 2016-05-23 22:19:53 | [diff] [blame] | 1859 | for (auto iter = pending_contents_.begin(); iter != pending_contents_.end(); |
[email protected] | ceee8cd | 2013-03-08 04:59:51 | [diff] [blame] | 1860 | ++iter) { |
erikchen | bee5c962 | 2018-04-27 19:30:25 | [diff] [blame] | 1861 | if (iter->second.get() != web_contents) |
[email protected] | ceee8cd | 2013-03-08 04:59:51 | [diff] [blame] | 1862 | continue; |
erikchen | bee5c962 | 2018-04-27 19:30:25 | [diff] [blame] | 1863 | |
| 1864 | // Someone else has deleted the WebContents. That should never happen! |
| 1865 | // TODO(erikchen): Fix semantics here. https://crbug.com/832879. |
| 1866 | iter->second.release(); |
[email protected] | ceee8cd | 2013-03-08 04:59:51 | [diff] [blame] | 1867 | pending_contents_.erase(iter); |
[email protected] | ceee8cd | 2013-03-08 04:59:51 | [diff] [blame] | 1868 | return; |
| 1869 | } |
| 1870 | NOTREACHED(); |
[email protected] | 14392a5 | 2012-05-02 20:28:44 | [diff] [blame] | 1871 | } |
| 1872 | |
[email protected] | 7fff43e | 2013-05-21 20:21:10 | [diff] [blame] | 1873 | void WebContentsImpl::AddDestructionObserver(WebContentsImpl* web_contents) { |
| 1874 | if (!ContainsKey(destruction_observers_, web_contents)) { |
| 1875 | destruction_observers_[web_contents] = |
Jeremy Roman | 04f27c37 | 2017-10-27 15:20:55 | [diff] [blame] | 1876 | std::make_unique<DestructionObserver>(this, web_contents); |
[email protected] | 7fff43e | 2013-05-21 20:21:10 | [diff] [blame] | 1877 | } |
| 1878 | } |
| 1879 | |
| 1880 | void WebContentsImpl::RemoveDestructionObserver(WebContentsImpl* web_contents) { |
avi | a8cf8198 | 2016-08-12 20:28:46 | [diff] [blame] | 1881 | destruction_observers_.erase(web_contents); |
[email protected] | 7fff43e | 2013-05-21 20:21:10 | [diff] [blame] | 1882 | } |
| 1883 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 1884 | void WebContentsImpl::AddObserver(WebContentsObserver* observer) { |
[email protected] | be1f56ab | 2011-12-22 06:55:31 | [diff] [blame] | 1885 | observers_.AddObserver(observer); |
| 1886 | } |
| 1887 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 1888 | void WebContentsImpl::RemoveObserver(WebContentsObserver* observer) { |
[email protected] | be1f56ab | 2011-12-22 06:55:31 | [diff] [blame] | 1889 | observers_.RemoveObserver(observer); |
| 1890 | } |
| 1891 | |
[email protected] | 948481d | 2014-06-11 18:32:22 | [diff] [blame] | 1892 | std::set<RenderWidgetHostView*> |
| 1893 | WebContentsImpl::GetRenderWidgetHostViewsInTree() { |
| 1894 | std::set<RenderWidgetHostView*> set; |
| 1895 | if (ShowingInterstitialPage()) { |
lfg | f949e0e | 2017-05-10 22:18:11 | [diff] [blame] | 1896 | if (RenderWidgetHostView* rwhv = GetRenderWidgetHostView()) |
| 1897 | set.insert(rwhv); |
[email protected] | 948481d | 2014-06-11 18:32:22 | [diff] [blame] | 1898 | } else { |
dcheng | afb53e2 | 2016-02-04 08:11:08 | [diff] [blame] | 1899 | for (RenderFrameHost* rfh : GetAllFrames()) { |
lfg | f949e0e | 2017-05-10 22:18:11 | [diff] [blame] | 1900 | if (RenderWidgetHostView* rwhv = static_cast<RenderFrameHostImpl*>(rfh) |
| 1901 | ->frame_tree_node() |
| 1902 | ->render_manager() |
| 1903 | ->GetRenderWidgetHostView()) { |
| 1904 | set.insert(rwhv); |
| 1905 | } |
dcheng | afb53e2 | 2016-02-04 08:11:08 | [diff] [blame] | 1906 | } |
[email protected] | 948481d | 2014-06-11 18:32:22 | [diff] [blame] | 1907 | } |
[email protected] | de3c5d8 | 2014-05-28 22:12:59 | [diff] [blame] | 1908 | return set; |
| 1909 | } |
| 1910 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 1911 | void WebContentsImpl::Activate() { |
[email protected] | d5f942ba | 2008-09-26 19:30:34 | [diff] [blame] | 1912 | if (delegate_) |
| 1913 | delegate_->ActivateContents(this); |
| 1914 | } |
| 1915 | |
avi | 3e4b851 | 2015-11-11 01:55:49 | [diff] [blame] | 1916 | void WebContentsImpl::LostCapture(RenderWidgetHostImpl* render_widget_host) { |
| 1917 | if (!RenderViewHostImpl::From(render_widget_host)) |
| 1918 | return; |
| 1919 | |
[email protected] | 6395479 | 2011-07-11 04:17:48 | [diff] [blame] | 1920 | if (delegate_) |
| 1921 | delegate_->LostCapture(); |
| 1922 | } |
| 1923 | |
lazyboy | 63f5b31 | 2015-11-23 20:19:52 | [diff] [blame] | 1924 | void WebContentsImpl::RenderWidgetCreated( |
| 1925 | RenderWidgetHostImpl* render_widget_host) { |
| 1926 | created_widgets_.insert(render_widget_host); |
| 1927 | } |
| 1928 | |
[email protected] | b24b68a | 2012-09-24 21:57:26 | [diff] [blame] | 1929 | void WebContentsImpl::RenderWidgetDeleted( |
| 1930 | RenderWidgetHostImpl* render_widget_host) { |
lazyboy | 63f5b31 | 2015-11-23 20:19:52 | [diff] [blame] | 1931 | // Note that |is_being_destroyed_| can be true at this point as |
| 1932 | // ~WebContentsImpl() calls RFHM::ClearRFHsPendingShutdown(), which might lead |
| 1933 | // us here. |
| 1934 | created_widgets_.erase(render_widget_host); |
[email protected] | b24b68a | 2012-09-24 21:57:26 | [diff] [blame] | 1935 | |
lazyboy | 63f5b31 | 2015-11-23 20:19:52 | [diff] [blame] | 1936 | if (is_being_destroyed_) |
| 1937 | return; |
[email protected] | 44470a2 | 2013-01-24 01:21:54 | [diff] [blame] | 1938 | |
| 1939 | if (render_widget_host && |
alexmos | c9e76ec | 2016-05-16 22:59:37 | [diff] [blame] | 1940 | render_widget_host->GetRoutingID() == fullscreen_widget_routing_id_ && |
| 1941 | render_widget_host->GetProcess()->GetID() == |
| 1942 | fullscreen_widget_process_id_) { |
[email protected] | 4aebbca | 2013-09-17 22:26:49 | [diff] [blame] | 1943 | if (delegate_ && delegate_->EmbedsFullscreenWidget()) |
mlamouri | 7a78d6fd | 2015-01-17 13:23:53 | [diff] [blame] | 1944 | delegate_->ExitFullscreenModeForTab(this); |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 1945 | for (auto& observer : observers_) |
| 1946 | observer.DidDestroyFullscreenWidget(); |
alexmos | c9e76ec | 2016-05-16 22:59:37 | [diff] [blame] | 1947 | fullscreen_widget_process_id_ = ChildProcessHost::kInvalidUniqueID; |
[email protected] | 44470a2 | 2013-01-24 01:21:54 | [diff] [blame] | 1948 | fullscreen_widget_routing_id_ = MSG_ROUTING_NONE; |
[email protected] | 0b43199 | 2014-06-24 00:08:03 | [diff] [blame] | 1949 | if (fullscreen_widget_had_focus_at_shutdown_) |
| 1950 | view_->RestoreFocus(); |
[email protected] | 44470a2 | 2013-01-24 01:21:54 | [diff] [blame] | 1951 | } |
lfg | bee1e0a | 2016-06-08 21:24:21 | [diff] [blame] | 1952 | |
lfg | 7d4caad | 2017-03-22 09:01:45 | [diff] [blame] | 1953 | if (render_widget_host == mouse_lock_widget_) |
lfg | ff8dfc8d | 2016-10-21 17:42:32 | [diff] [blame] | 1954 | LostMouseLock(mouse_lock_widget_); |
Joe Downing | 192998b2 | 2018-03-22 15:51:36 | [diff] [blame] | 1955 | |
| 1956 | CancelKeyboardLock(keyboard_lock_widget_); |
[email protected] | b24b68a | 2012-09-24 21:57:26 | [diff] [blame] | 1957 | } |
| 1958 | |
miu | 9e14e49 | 2014-10-25 02:39:04 | [diff] [blame] | 1959 | void WebContentsImpl::RenderWidgetGotFocus( |
| 1960 | RenderWidgetHostImpl* render_widget_host) { |
calamity | 7fe55ce | 2015-04-10 03:59:37 | [diff] [blame] | 1961 | // Notify the observers if an embedded fullscreen widget was focused. |
| 1962 | if (delegate_ && render_widget_host && delegate_->EmbedsFullscreenWidget() && |
| 1963 | render_widget_host->GetView() == GetFullscreenRenderWidgetHostView()) { |
Michael Thiessen | 896405db | 2017-07-20 17:52:32 | [diff] [blame] | 1964 | NotifyWebContentsFocused(render_widget_host); |
calamity | 7fe55ce | 2015-04-10 03:59:37 | [diff] [blame] | 1965 | } |
miu | 9e14e49 | 2014-10-25 02:39:04 | [diff] [blame] | 1966 | } |
| 1967 | |
zijiehe | 3bee08e2 | 2017-05-17 04:14:46 | [diff] [blame] | 1968 | void WebContentsImpl::RenderWidgetLostFocus( |
| 1969 | RenderWidgetHostImpl* render_widget_host) { |
Michael Thiessen | 896405db | 2017-07-20 17:52:32 | [diff] [blame] | 1970 | // Notify the observers if an embedded fullscreen widget lost focus. |
| 1971 | if (delegate_ && render_widget_host && delegate_->EmbedsFullscreenWidget() && |
| 1972 | render_widget_host->GetView() == GetFullscreenRenderWidgetHostView()) { |
| 1973 | NotifyWebContentsLostFocus(render_widget_host); |
| 1974 | } |
zijiehe | 3bee08e2 | 2017-05-17 04:14:46 | [diff] [blame] | 1975 | } |
| 1976 | |
estade | d0a0c99 | 2015-01-21 14:12:06 | [diff] [blame] | 1977 | void WebContentsImpl::RenderWidgetWasResized( |
rouslan | 2f5993f | 2015-01-29 00:18:31 | [diff] [blame] | 1978 | RenderWidgetHostImpl* render_widget_host, |
Christopher Cameron | 07f666b | 2018-02-13 23:41:19 | [diff] [blame] | 1979 | const ScreenInfo& screen_info, |
rouslan | 2f5993f | 2015-01-29 00:18:31 | [diff] [blame] | 1980 | bool width_changed) { |
creis | c014b40 | 2015-04-23 16:41:45 | [diff] [blame] | 1981 | RenderFrameHostImpl* rfh = GetMainFrame(); |
estade | ce344ec | 2015-01-23 00:12:29 | [diff] [blame] | 1982 | if (!rfh || render_widget_host != rfh->GetRenderWidgetHost()) |
estade | d0a0c99 | 2015-01-21 14:12:06 | [diff] [blame] | 1983 | return; |
estade | d0a0c99 | 2015-01-21 14:12:06 | [diff] [blame] | 1984 | |
lfg | 8d649cc | 2017-04-28 18:04:30 | [diff] [blame] | 1985 | SendPageMessage(new PageMsg_UpdateScreenInfo(MSG_ROUTING_NONE, screen_info)); |
| 1986 | |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 1987 | for (auto& observer : observers_) |
| 1988 | observer.MainFrameWasResized(width_changed); |
estade | d0a0c99 | 2015-01-21 14:12:06 | [diff] [blame] | 1989 | } |
| 1990 | |
sky | f65d9bb | 2017-03-24 02:26:39 | [diff] [blame] | 1991 | KeyboardEventProcessingResult WebContentsImpl::PreHandleKeyboardEvent( |
| 1992 | const NativeWebKeyboardEvent& event) { |
| 1993 | return delegate_ ? delegate_->PreHandleKeyboardEvent(this, event) |
| 1994 | : KeyboardEventProcessingResult::NOT_HANDLED; |
[email protected] | 6395479 | 2011-07-11 04:17:48 | [diff] [blame] | 1995 | } |
| 1996 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 1997 | void WebContentsImpl::HandleKeyboardEvent(const NativeWebKeyboardEvent& event) { |
[email protected] | 0b09400 | 2014-08-20 18:28:10 | [diff] [blame] | 1998 | if (browser_plugin_embedder_ && |
| 1999 | browser_plugin_embedder_->HandleKeyboardEvent(event)) { |
| 2000 | return; |
| 2001 | } |
[email protected] | 6395479 | 2011-07-11 04:17:48 | [diff] [blame] | 2002 | if (delegate_) |
[email protected] | b3996ba | 2012-08-08 00:39:13 | [diff] [blame] | 2003 | delegate_->HandleKeyboardEvent(this, event); |
[email protected] | 6395479 | 2011-07-11 04:17:48 | [diff] [blame] | 2004 | } |
| 2005 | |
[email protected] | d92026ef | 2014-03-03 21:04:13 | [diff] [blame] | 2006 | bool WebContentsImpl::HandleWheelEvent( |
[email protected] | 180ef24 | 2013-11-07 06:50:46 | [diff] [blame] | 2007 | const blink::WebMouseWheelEvent& event) { |
[email protected] | bccc447 | 2013-04-18 16:37:19 | [diff] [blame] | 2008 | #if !defined(OS_MACOSX) |
lanwei | a93644f | 2015-01-21 22:00:33 | [diff] [blame] | 2009 | // On platforms other than Mac, control+mousewheel may change zoom. On Mac, |
| 2010 | // this isn't done for two reasons: |
[email protected] | bccc447 | 2013-04-18 16:37:19 | [diff] [blame] | 2011 | // -the OS already has a gesture to do this through pinch-zoom |
| 2012 | // -if a user starts an inertial scroll, let's go, and presses control |
| 2013 | // (i.e. control+tab) then the OS's buffered scroll events will come in |
| 2014 | // with control key set which isn't what the user wants |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 2015 | if (delegate_ && event.wheel_ticks_y && |
chongz | 4a975194 | 2016-08-17 17:49:39 | [diff] [blame] | 2016 | !ui::WebInputEventTraits::CanCauseScroll(event)) { |
w.shackleton | 49bcd39 | 2016-01-06 17:38:22 | [diff] [blame] | 2017 | // Count only integer cumulative scrolls as zoom events; this handles |
| 2018 | // smooth scroll and regular scroll device behavior. |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 2019 | zoom_scroll_remainder_ += event.wheel_ticks_y; |
w.shackleton | 49bcd39 | 2016-01-06 17:38:22 | [diff] [blame] | 2020 | int whole_zoom_scroll_remainder_ = std::lround(zoom_scroll_remainder_); |
| 2021 | zoom_scroll_remainder_ -= whole_zoom_scroll_remainder_; |
| 2022 | if (whole_zoom_scroll_remainder_ != 0) { |
| 2023 | delegate_->ContentsZoomChange(whole_zoom_scroll_remainder_ > 0); |
| 2024 | } |
[email protected] | fb3f066e | 2013-02-12 19:12:52 | [diff] [blame] | 2025 | return true; |
| 2026 | } |
[email protected] | bccc447 | 2013-04-18 16:37:19 | [diff] [blame] | 2027 | #endif |
[email protected] | fb3f066e | 2013-02-12 19:12:52 | [diff] [blame] | 2028 | return false; |
| 2029 | } |
| 2030 | |
[email protected] | 04bce56 | 2014-01-30 05:34:54 | [diff] [blame] | 2031 | bool WebContentsImpl::PreHandleGestureEvent( |
| 2032 | const blink::WebGestureEvent& event) { |
[email protected] | 28042d3 | 2014-02-03 14:10:03 | [diff] [blame] | 2033 | return delegate_ && delegate_->PreHandleGestureEvent(this, event); |
[email protected] | 04bce56 | 2014-01-30 05:34:54 | [diff] [blame] | 2034 | } |
| 2035 | |
kenrb | 2a565f8 | 2015-09-02 20:24:59 | [diff] [blame] | 2036 | RenderWidgetHostInputEventRouter* WebContentsImpl::GetInputEventRouter() { |
wjmaclean | e31234f | 2015-12-14 17:20:45 | [diff] [blame] | 2037 | if (!is_being_destroyed_ && GetOuterWebContents()) |
| 2038 | return GetOuterWebContents()->GetInputEventRouter(); |
| 2039 | |
| 2040 | if (!rwh_input_event_router_.get() && !is_being_destroyed_) |
kenrb | 2a565f8 | 2015-09-02 20:24:59 | [diff] [blame] | 2041 | rwh_input_event_router_.reset(new RenderWidgetHostInputEventRouter); |
| 2042 | return rwh_input_event_router_.get(); |
| 2043 | } |
| 2044 | |
alexmos | 3fcd0ca | 2015-10-23 18:18:33 | [diff] [blame] | 2045 | void WebContentsImpl::ReplicatePageFocus(bool is_focused) { |
| 2046 | // Focus loss may occur while this WebContents is being destroyed. Don't |
| 2047 | // send the message in this case, as the main frame's RenderFrameHost and |
| 2048 | // other state has already been cleared. |
| 2049 | if (is_being_destroyed_) |
| 2050 | return; |
| 2051 | |
| 2052 | frame_tree_.ReplicatePageFocus(is_focused); |
| 2053 | } |
| 2054 | |
alexmos | c4cbacb | 2015-11-21 01:29:22 | [diff] [blame] | 2055 | RenderWidgetHostImpl* WebContentsImpl::GetFocusedRenderWidgetHost( |
| 2056 | RenderWidgetHostImpl* receiving_widget) { |
alexmos | c4cbacb | 2015-11-21 01:29:22 | [diff] [blame] | 2057 | // Events for widgets other than the main frame (e.g., popup menus) should be |
| 2058 | // forwarded directly to the widget they arrived on. |
| 2059 | if (receiving_widget != GetMainFrame()->GetRenderWidgetHost()) |
| 2060 | return receiving_widget; |
alexmos | c4d183e | 2015-11-06 00:46:52 | [diff] [blame] | 2061 | |
lfg | 1453e41 | 2017-04-11 00:48:50 | [diff] [blame] | 2062 | WebContentsImpl* focused_contents = GetFocusedWebContents(); |
| 2063 | |
| 2064 | // If the focused WebContents is showing an interstitial, return the |
| 2065 | // interstitial's widget. |
| 2066 | if (focused_contents->ShowingInterstitialPage()) { |
| 2067 | return static_cast<RenderFrameHostImpl*>( |
creis | adca986 | 2017-06-16 19:12:11 | [diff] [blame] | 2068 | focused_contents->interstitial_page_->GetMainFrame()) |
lfg | 1453e41 | 2017-04-11 00:48:50 | [diff] [blame] | 2069 | ->GetRenderWidgetHost(); |
| 2070 | } |
| 2071 | |
paulmeyer | feafc2d | 2017-04-25 21:46:40 | [diff] [blame] | 2072 | // If the focused WebContents is a guest WebContents, then get the focused |
| 2073 | // frame in the embedder WebContents instead. |
| 2074 | FrameTreeNode* focused_frame = nullptr; |
| 2075 | if (focused_contents->browser_plugin_guest_ && |
| 2076 | !GuestMode::IsCrossProcessFrameGuest(focused_contents)) { |
| 2077 | focused_frame = frame_tree_.GetFocusedFrame(); |
| 2078 | } else { |
| 2079 | focused_frame = GetFocusedWebContents()->frame_tree_.GetFocusedFrame(); |
| 2080 | } |
lfg | 1453e41 | 2017-04-11 00:48:50 | [diff] [blame] | 2081 | |
alexmos | c4d183e | 2015-11-06 00:46:52 | [diff] [blame] | 2082 | if (!focused_frame) |
alexmos | c4cbacb | 2015-11-21 01:29:22 | [diff] [blame] | 2083 | return receiving_widget; |
alexmos | c4d183e | 2015-11-06 00:46:52 | [diff] [blame] | 2084 | |
alexmos | 732ca3a | 2015-12-08 02:01:02 | [diff] [blame] | 2085 | // The view may be null if a subframe's renderer process has crashed while |
| 2086 | // the subframe has focus. Drop the event in that case. Do not give |
| 2087 | // it to the main frame, so that the user doesn't unexpectedly type into the |
| 2088 | // wrong frame if a focused subframe renderer crashes while they type. |
| 2089 | RenderWidgetHostView* view = focused_frame->current_frame_host()->GetView(); |
| 2090 | if (!view) |
| 2091 | return nullptr; |
| 2092 | |
| 2093 | return RenderWidgetHostImpl::From(view->GetRenderWidgetHost()); |
alexmos | c4d183e | 2015-11-06 00:46:52 | [diff] [blame] | 2094 | } |
| 2095 | |
avallee | 9993fca | 2016-11-17 06:16:50 | [diff] [blame] | 2096 | RenderWidgetHostImpl* WebContentsImpl::GetRenderWidgetHostWithPageFocus() { |
lfg | 1453e41 | 2017-04-11 00:48:50 | [diff] [blame] | 2097 | WebContentsImpl* focused_web_contents = GetFocusedWebContents(); |
| 2098 | |
| 2099 | if (focused_web_contents->ShowingInterstitialPage()) { |
| 2100 | return static_cast<RenderFrameHostImpl*>( |
creis | adca986 | 2017-06-16 19:12:11 | [diff] [blame] | 2101 | focused_web_contents->interstitial_page_->GetMainFrame()) |
lfg | 1453e41 | 2017-04-11 00:48:50 | [diff] [blame] | 2102 | ->GetRenderWidgetHost(); |
| 2103 | } |
Alex Vallée | dc80ae2ed | 2017-09-06 21:55:44 | [diff] [blame] | 2104 | if (!GuestMode::IsCrossProcessFrameGuest(focused_web_contents) && |
| 2105 | focused_web_contents->browser_plugin_guest_) { |
| 2106 | // If this is a guest, we need to be controlled by our embedder. |
| 2107 | return focused_web_contents->GetOuterWebContents() |
| 2108 | ->GetMainFrame() |
| 2109 | ->GetRenderWidgetHost(); |
| 2110 | } |
lfg | 1453e41 | 2017-04-11 00:48:50 | [diff] [blame] | 2111 | |
| 2112 | return focused_web_contents->GetMainFrame()->GetRenderWidgetHost(); |
avallee | 9993fca | 2016-11-17 06:16:50 | [diff] [blame] | 2113 | } |
| 2114 | |
Dave Tapuska | 3ed4419 | 2018-05-01 18:53:30 | [diff] [blame] | 2115 | void WebContentsImpl::EnterFullscreenMode( |
| 2116 | const GURL& origin, |
| 2117 | const blink::WebFullscreenOptions& options) { |
mlamouri | 7a78d6fd | 2015-01-17 13:23:53 | [diff] [blame] | 2118 | // This method is being called to enter renderer-initiated fullscreen mode. |
| 2119 | // Make sure any existing fullscreen widget is shut down first. |
[email protected] | 4aebbca | 2013-09-17 22:26:49 | [diff] [blame] | 2120 | RenderWidgetHostView* const widget_view = GetFullscreenRenderWidgetHostView(); |
avi | 85a4cef | 2015-12-18 20:13:37 | [diff] [blame] | 2121 | if (widget_view) { |
| 2122 | RenderWidgetHostImpl::From(widget_view->GetRenderWidgetHost()) |
| 2123 | ->ShutdownAndDestroyWidget(true); |
| 2124 | } |
[email protected] | 4aebbca | 2013-09-17 22:26:49 | [diff] [blame] | 2125 | |
Joe Downing | 13dd76b | 2018-04-09 18:32:15 | [diff] [blame] | 2126 | if (delegate_) { |
Dave Tapuska | 3ed4419 | 2018-05-01 18:53:30 | [diff] [blame] | 2127 | delegate_->EnterFullscreenModeForTab(this, origin, options); |
mlamouri | 7a78d6fd | 2015-01-17 13:23:53 | [diff] [blame] | 2128 | |
Joe Downing | 13dd76b | 2018-04-09 18:32:15 | [diff] [blame] | 2129 | if (keyboard_lock_widget_) |
| 2130 | delegate_->RequestKeyboardLock(this, esc_key_locked_); |
| 2131 | } |
| 2132 | |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 2133 | for (auto& observer : observers_) |
| 2134 | observer.DidToggleFullscreenModeForTab(IsFullscreenForCurrentTab(), false); |
mlamouri | 7a78d6fd | 2015-01-17 13:23:53 | [diff] [blame] | 2135 | } |
| 2136 | |
bokan | ece34a8 | 2016-01-28 19:49:46 | [diff] [blame] | 2137 | void WebContentsImpl::ExitFullscreenMode(bool will_cause_resize) { |
mlamouri | 7a78d6fd | 2015-01-17 13:23:53 | [diff] [blame] | 2138 | // This method is being called to leave renderer-initiated fullscreen mode. |
| 2139 | // Make sure any existing fullscreen widget is shut down first. |
| 2140 | RenderWidgetHostView* const widget_view = GetFullscreenRenderWidgetHostView(); |
avi | 85a4cef | 2015-12-18 20:13:37 | [diff] [blame] | 2141 | if (widget_view) { |
| 2142 | RenderWidgetHostImpl::From(widget_view->GetRenderWidgetHost()) |
| 2143 | ->ShutdownAndDestroyWidget(true); |
| 2144 | } |
mlamouri | 7a78d6fd | 2015-01-17 13:23:53 | [diff] [blame] | 2145 | |
hugo.holgersson | 61288e6c | 2015-01-28 17:04:40 | [diff] [blame] | 2146 | #if defined(OS_ANDROID) |
| 2147 | ContentVideoView* video_view = ContentVideoView::GetInstance(); |
| 2148 | if (video_view != NULL) |
watk | 9829229 | 2016-01-19 22:24:08 | [diff] [blame] | 2149 | video_view->ExitFullscreen(); |
hugo.holgersson | 61288e6c | 2015-01-28 17:04:40 | [diff] [blame] | 2150 | #endif |
| 2151 | |
Joe Downing | 13dd76b | 2018-04-09 18:32:15 | [diff] [blame] | 2152 | if (delegate_) { |
mlamouri | 7a78d6fd | 2015-01-17 13:23:53 | [diff] [blame] | 2153 | delegate_->ExitFullscreenModeForTab(this); |
[email protected] | 657c8e0 | 2014-03-19 19:18:37 | [diff] [blame] | 2154 | |
Joe Downing | 13dd76b | 2018-04-09 18:32:15 | [diff] [blame] | 2155 | if (keyboard_lock_widget_) |
| 2156 | delegate_->CancelKeyboardLockRequest(this); |
| 2157 | } |
| 2158 | |
bokan | ece34a8 | 2016-01-28 19:49:46 | [diff] [blame] | 2159 | // The fullscreen state is communicated to the renderer through a resize |
| 2160 | // message. If the change in fullscreen state doesn't cause a view resize |
| 2161 | // then we must ensure web contents exit the fullscreen state by explicitly |
| 2162 | // sending a resize message. This is required for the situation of the browser |
| 2163 | // moving the view into a "browser fullscreen" state and then the contents |
| 2164 | // entering "tab fullscreen". Exiting the contents "tab fullscreen" then won't |
| 2165 | // have the side effect of the view resizing, hence the explicit call here is |
| 2166 | // required. |
| 2167 | if (!will_cause_resize) { |
| 2168 | if (RenderWidgetHostView* rwhv = GetRenderWidgetHostView()) { |
| 2169 | if (RenderWidgetHost* render_widget_host = rwhv->GetRenderWidgetHost()) |
Fady Samuel | 0b91182 | 2018-04-25 13:22:16 | [diff] [blame] | 2170 | render_widget_host->SynchronizeVisualProperties(); |
bokan | ece34a8 | 2016-01-28 19:49:46 | [diff] [blame] | 2171 | } |
scheib | 3dcb6c93 | 2015-02-23 10:55:58 | [diff] [blame] | 2172 | } |
| 2173 | |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 2174 | for (auto& observer : observers_) { |
| 2175 | observer.DidToggleFullscreenModeForTab(IsFullscreenForCurrentTab(), |
| 2176 | will_cause_resize); |
| 2177 | } |
[email protected] | 8a5e0ca | 2011-08-25 06:30:47 | [diff] [blame] | 2178 | } |
| 2179 | |
alexmos | 5dd617d | 2016-06-07 04:21:15 | [diff] [blame] | 2180 | bool WebContentsImpl::IsFullscreenForCurrentTab() const { |
[email protected] | 199bba6e | 2012-04-04 16:19:38 | [diff] [blame] | 2181 | return delegate_ ? delegate_->IsFullscreenForTabOrPending(this) : false; |
[email protected] | 5d5f7af | 2011-10-01 01:38:12 | [diff] [blame] | 2182 | } |
| 2183 | |
billorr | 21c005d | 2016-11-17 03:57:04 | [diff] [blame] | 2184 | bool WebContentsImpl::IsFullscreen() { |
| 2185 | return IsFullscreenForCurrentTab(); |
| 2186 | } |
| 2187 | |
avi | bf58fa0c | 2015-11-11 01:45:52 | [diff] [blame] | 2188 | blink::WebDisplayMode WebContentsImpl::GetDisplayMode( |
| 2189 | RenderWidgetHostImpl* render_widget_host) const { |
| 2190 | if (!RenderViewHostImpl::From(render_widget_host)) |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 2191 | return blink::kWebDisplayModeBrowser; |
avi | bf58fa0c | 2015-11-11 01:45:52 | [diff] [blame] | 2192 | |
mikhail.pozdnyakov | c0e251b | 2015-04-15 06:51:12 | [diff] [blame] | 2193 | return delegate_ ? delegate_->GetDisplayMode(this) |
Blink Reformat | 1c4d759e | 2017-04-09 16:34:54 | [diff] [blame] | 2194 | : blink::kWebDisplayModeBrowser; |
mikhail.pozdnyakov | c0e251b | 2015-04-15 06:51:12 | [diff] [blame] | 2195 | } |
| 2196 | |
avi | c3aa842 | 2015-11-09 20:57:22 | [diff] [blame] | 2197 | void WebContentsImpl::RequestToLockMouse( |
| 2198 | RenderWidgetHostImpl* render_widget_host, |
| 2199 | bool user_gesture, |
lfg | ad824435 | 2016-07-13 16:55:51 | [diff] [blame] | 2200 | bool last_unlocked_by_target, |
| 2201 | bool privileged) { |
lfg | f0cd46e | 2017-01-04 00:05:23 | [diff] [blame] | 2202 | for (WebContentsImpl* current = this; current; |
| 2203 | current = current->GetOuterWebContents()) { |
| 2204 | if (current->mouse_lock_widget_) { |
| 2205 | render_widget_host->GotResponseToLockMouseRequest(false); |
| 2206 | return; |
| 2207 | } |
[email protected] | e962111 | 2011-10-17 05:38:37 | [diff] [blame] | 2208 | } |
avi | c3aa842 | 2015-11-09 20:57:22 | [diff] [blame] | 2209 | |
lfg | ad824435 | 2016-07-13 16:55:51 | [diff] [blame] | 2210 | if (privileged) { |
lfg | f0cd46e | 2017-01-04 00:05:23 | [diff] [blame] | 2211 | DCHECK(!GetOuterWebContents()); |
lfg | ad824435 | 2016-07-13 16:55:51 | [diff] [blame] | 2212 | mouse_lock_widget_ = render_widget_host; |
| 2213 | render_widget_host->GotResponseToLockMouseRequest(true); |
| 2214 | return; |
| 2215 | } |
| 2216 | |
lfg | bee1e0a | 2016-06-08 21:24:21 | [diff] [blame] | 2217 | bool widget_in_frame_tree = false; |
| 2218 | for (FrameTreeNode* node : frame_tree_.Nodes()) { |
| 2219 | if (node->current_frame_host()->GetRenderWidgetHost() == |
| 2220 | render_widget_host) { |
| 2221 | widget_in_frame_tree = true; |
| 2222 | break; |
| 2223 | } |
| 2224 | } |
| 2225 | |
| 2226 | if (widget_in_frame_tree && delegate_) { |
lfg | f0cd46e | 2017-01-04 00:05:23 | [diff] [blame] | 2227 | for (WebContentsImpl* current = this; current; |
| 2228 | current = current->GetOuterWebContents()) { |
| 2229 | current->mouse_lock_widget_ = render_widget_host; |
| 2230 | } |
| 2231 | |
avi | c3aa842 | 2015-11-09 20:57:22 | [diff] [blame] | 2232 | delegate_->RequestToLockMouse(this, user_gesture, last_unlocked_by_target); |
lfg | bee1e0a | 2016-06-08 21:24:21 | [diff] [blame] | 2233 | } else { |
| 2234 | render_widget_host->GotResponseToLockMouseRequest(false); |
| 2235 | } |
[email protected] | e962111 | 2011-10-17 05:38:37 | [diff] [blame] | 2236 | } |
| 2237 | |
avi | 3e4b851 | 2015-11-11 01:55:49 | [diff] [blame] | 2238 | void WebContentsImpl::LostMouseLock(RenderWidgetHostImpl* render_widget_host) { |
lfg | bee1e0a | 2016-06-08 21:24:21 | [diff] [blame] | 2239 | CHECK(mouse_lock_widget_); |
lfg | f0cd46e | 2017-01-04 00:05:23 | [diff] [blame] | 2240 | |
| 2241 | if (mouse_lock_widget_->delegate()->GetAsWebContents() != this) |
| 2242 | return mouse_lock_widget_->delegate()->LostMouseLock(render_widget_host); |
| 2243 | |
lfg | bee1e0a | 2016-06-08 21:24:21 | [diff] [blame] | 2244 | mouse_lock_widget_->SendMouseLockLost(); |
lfg | f0cd46e | 2017-01-04 00:05:23 | [diff] [blame] | 2245 | for (WebContentsImpl* current = this; current; |
| 2246 | current = current->GetOuterWebContents()) { |
| 2247 | current->mouse_lock_widget_ = nullptr; |
| 2248 | } |
avi | 3e4b851 | 2015-11-11 01:55:49 | [diff] [blame] | 2249 | |
[email protected] | e962111 | 2011-10-17 05:38:37 | [diff] [blame] | 2250 | if (delegate_) |
| 2251 | delegate_->LostMouseLock(); |
| 2252 | } |
| 2253 | |
lfg | ad824435 | 2016-07-13 16:55:51 | [diff] [blame] | 2254 | bool WebContentsImpl::HasMouseLock(RenderWidgetHostImpl* render_widget_host) { |
| 2255 | // To verify if the mouse is locked, the mouse_lock_widget_ needs to be |
| 2256 | // assigned to the widget that requested the mouse lock, and the top-level |
| 2257 | // platform RenderWidgetHostView needs to hold the mouse lock from the OS. |
| 2258 | return mouse_lock_widget_ == render_widget_host && |
| 2259 | GetTopLevelRenderWidgetHostView()->IsMouseLocked(); |
| 2260 | } |
| 2261 | |
lfg | 84763c9 | 2017-02-16 18:55:15 | [diff] [blame] | 2262 | RenderWidgetHostImpl* WebContentsImpl::GetMouseLockWidget() { |
lfg | e2176fb | 2017-03-26 00:45:47 | [diff] [blame] | 2263 | if (GetTopLevelRenderWidgetHostView()->IsMouseLocked() || |
| 2264 | (GetFullscreenRenderWidgetHostView() && |
| 2265 | GetFullscreenRenderWidgetHostView()->IsMouseLocked())) |
lfg | 84763c9 | 2017-02-16 18:55:15 | [diff] [blame] | 2266 | return mouse_lock_widget_; |
| 2267 | |
| 2268 | return nullptr; |
| 2269 | } |
| 2270 | |
Joe Downing | 192998b2 | 2018-03-22 15:51:36 | [diff] [blame] | 2271 | bool WebContentsImpl::RequestKeyboardLock( |
Joe Downing | 13dd76b | 2018-04-09 18:32:15 | [diff] [blame] | 2272 | RenderWidgetHostImpl* render_widget_host, |
| 2273 | bool esc_key_locked) { |
Joe Downing | 192998b2 | 2018-03-22 15:51:36 | [diff] [blame] | 2274 | DCHECK(render_widget_host); |
Joe Downing | 192998b2 | 2018-03-22 15:51:36 | [diff] [blame] | 2275 | if (render_widget_host->delegate()->GetAsWebContents() != this) { |
| 2276 | NOTREACHED(); |
| 2277 | return false; |
| 2278 | } |
| 2279 | |
| 2280 | // KeyboardLock is only supported when called by the top-level browsing |
| 2281 | // context and is not supported in embedded content scenarios. |
| 2282 | if (GetOuterWebContents()) |
| 2283 | return false; |
| 2284 | |
Joe Downing | 13dd76b | 2018-04-09 18:32:15 | [diff] [blame] | 2285 | esc_key_locked_ = esc_key_locked; |
Joe Downing | 192998b2 | 2018-03-22 15:51:36 | [diff] [blame] | 2286 | keyboard_lock_widget_ = render_widget_host; |
| 2287 | |
Joe Downing | 13dd76b | 2018-04-09 18:32:15 | [diff] [blame] | 2288 | if (delegate_) |
| 2289 | delegate_->RequestKeyboardLock(this, esc_key_locked_); |
Joe Downing | 192998b2 | 2018-03-22 15:51:36 | [diff] [blame] | 2290 | return true; |
| 2291 | } |
| 2292 | |
| 2293 | void WebContentsImpl::CancelKeyboardLock( |
| 2294 | RenderWidgetHostImpl* render_widget_host) { |
| 2295 | if (!keyboard_lock_widget_ || render_widget_host != keyboard_lock_widget_) |
| 2296 | return; |
| 2297 | |
| 2298 | RenderWidgetHostImpl* old_keyboard_lock_widget = keyboard_lock_widget_; |
| 2299 | keyboard_lock_widget_ = nullptr; |
| 2300 | |
Joe Downing | 13dd76b | 2018-04-09 18:32:15 | [diff] [blame] | 2301 | if (delegate_) |
| 2302 | delegate_->CancelKeyboardLockRequest(this); |
| 2303 | |
Joe Downing | 192998b2 | 2018-03-22 15:51:36 | [diff] [blame] | 2304 | old_keyboard_lock_widget->CancelKeyboardLock(); |
| 2305 | } |
| 2306 | |
| 2307 | RenderWidgetHostImpl* WebContentsImpl::GetKeyboardLockWidget() { |
| 2308 | return keyboard_lock_widget_; |
| 2309 | } |
| 2310 | |
ekaramad | a4f4269 | 2016-02-11 19:48:37 | [diff] [blame] | 2311 | void WebContentsImpl::OnRenderFrameProxyVisibilityChanged(bool visible) { |
lfg | 9462cef | 2016-07-18 23:51:06 | [diff] [blame] | 2312 | if (visible && !GetOuterWebContents()->IsHidden()) |
ekaramad | a4f4269 | 2016-02-11 19:48:37 | [diff] [blame] | 2313 | WasShown(); |
lfg | 9462cef | 2016-07-18 23:51:06 | [diff] [blame] | 2314 | else if (!visible) |
ekaramad | a4f4269 | 2016-02-11 19:48:37 | [diff] [blame] | 2315 | WasHidden(); |
| 2316 | } |
| 2317 | |
[email protected] | bafe6cd | 2012-05-23 23:09:50 | [diff] [blame] | 2318 | void WebContentsImpl::CreateNewWindow( |
csharrison | 95f01e92 | 2017-04-24 18:52:35 | [diff] [blame] | 2319 | RenderFrameHost* opener, |
nick | 5ae4d2d | 2017-01-06 01:18:35 | [diff] [blame] | 2320 | int32_t render_view_route_id, |
dcheng | 3ce04b6 | 2015-10-26 23:30:55 | [diff] [blame] | 2321 | int32_t main_frame_route_id, |
| 2322 | int32_t main_frame_widget_route_id, |
rockot | 5c478a7 | 2016-09-28 23:14:18 | [diff] [blame] | 2323 | const mojom::CreateNewWindowParams& params, |
[email protected] | 97714c8 | 2012-06-06 10:15:13 | [diff] [blame] | 2324 | SessionStorageNamespace* session_storage_namespace) { |
nick | 5ae4d2d | 2017-01-06 01:18:35 | [diff] [blame] | 2325 | // We should have zero valid routing ids, or three valid routing IDs. |
| 2326 | DCHECK_EQ((render_view_route_id == MSG_ROUTING_NONE), |
| 2327 | (main_frame_route_id == MSG_ROUTING_NONE)); |
| 2328 | DCHECK_EQ((render_view_route_id == MSG_ROUTING_NONE), |
| 2329 | (main_frame_widget_route_id == MSG_ROUTING_NONE)); |
csharrison | 95f01e92 | 2017-04-24 18:52:35 | [diff] [blame] | 2330 | DCHECK(opener); |
nick | 5ae4d2d | 2017-01-06 01:18:35 | [diff] [blame] | 2331 | |
csharrison | 95f01e92 | 2017-04-24 18:52:35 | [diff] [blame] | 2332 | int render_process_id = opener->GetProcess()->GetID(); |
| 2333 | SiteInstance* source_site_instance = opener->GetSiteInstance(); |
| 2334 | |
| 2335 | // The route IDs passed into this function can be trusted not to already |
| 2336 | // be in use; they were allocated by the RenderWidgetHelper by the caller. |
nick | 5ae4d2d | 2017-01-06 01:18:35 | [diff] [blame] | 2337 | DCHECK(!RenderFrameHostImpl::FromID(render_process_id, main_frame_route_id)); |
| 2338 | |
[email protected] | bafe6cd | 2012-05-23 23:09:50 | [diff] [blame] | 2339 | // We usually create the new window in the same BrowsingInstance (group of |
| 2340 | // script-related windows), by passing in the current SiteInstance. However, |
[email protected] | c453807 | 2013-03-18 02:17:55 | [diff] [blame] | 2341 | // if the opener is being suppressed (in a non-guest), we create a new |
| 2342 | // SiteInstance in its own BrowsingInstance. |
[email protected] | a24efc2 | 2014-05-26 15:50:25 | [diff] [blame] | 2343 | bool is_guest = BrowserPluginGuest::IsGuest(this); |
[email protected] | c453807 | 2013-03-18 02:17:55 | [diff] [blame] | 2344 | |
[email protected] | 04cbd3d | 2013-12-04 04:58:20 | [diff] [blame] | 2345 | // If the opener is to be suppressed, the new window can be in any process. |
| 2346 | // Since routing ids are process specific, we must not have one passed in |
| 2347 | // as argument here. |
nick | 5ae4d2d | 2017-01-06 01:18:35 | [diff] [blame] | 2348 | DCHECK(!params.opener_suppressed || render_view_route_id == MSG_ROUTING_NONE); |
[email protected] | 04cbd3d | 2013-12-04 04:58:20 | [diff] [blame] | 2349 | |
[email protected] | bafe6cd | 2012-05-23 23:09:50 | [diff] [blame] | 2350 | scoped_refptr<SiteInstance> site_instance = |
alexmos | 4cf2aa3 | 2015-07-15 23:40:43 | [diff] [blame] | 2351 | params.opener_suppressed && !is_guest |
| 2352 | ? SiteInstance::CreateForURL(GetBrowserContext(), params.target_url) |
| 2353 | : source_site_instance; |
[email protected] | bafe6cd | 2012-05-23 23:09:50 | [diff] [blame] | 2354 | |
[email protected] | d1198fd | 2012-08-13 22:50:19 | [diff] [blame] | 2355 | // We must assign the SessionStorageNamespace before calling Init(). |
[email protected] | 4c3a2358 | 2012-08-18 08:54:34 | [diff] [blame] | 2356 | // |
| 2357 | // http://crbug.com/142685 |
[email protected] | fdac6ade | 2013-07-20 01:06:30 | [diff] [blame] | 2358 | const std::string& partition_id = |
| 2359 | GetContentClient()->browser()-> |
| 2360 | GetStoragePartitionIdForSite(GetBrowserContext(), |
| 2361 | site_instance->GetSiteURL()); |
[email protected] | fc72bb1 | 2013-06-02 21:13:46 | [diff] [blame] | 2362 | StoragePartition* partition = BrowserContext::GetStoragePartition( |
| 2363 | GetBrowserContext(), site_instance.get()); |
[email protected] | 5f2aa72 | 2013-08-07 16:59:41 | [diff] [blame] | 2364 | DOMStorageContextWrapper* dom_storage_context = |
| 2365 | static_cast<DOMStorageContextWrapper*>(partition->GetDOMStorageContext()); |
[email protected] | d1198fd | 2012-08-13 22:50:19 | [diff] [blame] | 2366 | SessionStorageNamespaceImpl* session_storage_namespace_impl = |
| 2367 | static_cast<SessionStorageNamespaceImpl*>(session_storage_namespace); |
| 2368 | CHECK(session_storage_namespace_impl->IsFromContext(dom_storage_context)); |
[email protected] | dd673041 | 2013-08-14 15:03:37 | [diff] [blame] | 2369 | |
| 2370 | if (delegate_ && |
dcheng | 3ce04b6 | 2015-10-26 23:30:55 | [diff] [blame] | 2371 | !delegate_->ShouldCreateWebContents( |
lukasza | 6f8ac62 | 2017-06-06 03:10:20 | [diff] [blame] | 2372 | this, opener, source_site_instance, render_view_route_id, |
| 2373 | main_frame_route_id, main_frame_widget_route_id, |
| 2374 | params.window_container_type, opener->GetLastCommittedURL(), |
| 2375 | params.frame_name, params.target_url, partition_id, |
| 2376 | session_storage_namespace)) { |
jam | baaab3a | 2016-11-05 00:46:18 | [diff] [blame] | 2377 | // Note: even though we're not creating a WebContents here, it could have |
| 2378 | // been created by the embedder so ensure that the RenderFrameHost is |
| 2379 | // properly initialized. |
csharrison | a2280cd | 2016-02-03 23:21:15 | [diff] [blame] | 2380 | // It's safe to only target the frame because the render process will not |
| 2381 | // have a chance to create more frames at this point. |
jam | baaab3a | 2016-11-05 00:46:18 | [diff] [blame] | 2382 | RenderFrameHostImpl* rfh = |
| 2383 | RenderFrameHostImpl::FromID(render_process_id, main_frame_route_id); |
nick | 5ae4d2d | 2017-01-06 01:18:35 | [diff] [blame] | 2384 | if (rfh) { |
| 2385 | DCHECK(rfh->IsRenderFrameLive()); |
jam | baaab3a | 2016-11-05 00:46:18 | [diff] [blame] | 2386 | rfh->Init(); |
nick | 5ae4d2d | 2017-01-06 01:18:35 | [diff] [blame] | 2387 | } |
[email protected] | dd673041 | 2013-08-14 15:03:37 | [diff] [blame] | 2388 | return; |
| 2389 | } |
| 2390 | |
| 2391 | // Create the new web contents. This will automatically create the new |
| 2392 | // WebContentsView. In the future, we may want to create the view separately. |
[email protected] | fc72bb1 | 2013-06-02 21:13:46 | [diff] [blame] | 2393 | CreateParams create_params(GetBrowserContext(), site_instance.get()); |
nick | 5ae4d2d | 2017-01-06 01:18:35 | [diff] [blame] | 2394 | create_params.routing_id = render_view_route_id; |
[email protected] | 227692c5 | 2013-05-31 22:43:04 | [diff] [blame] | 2395 | create_params.main_frame_routing_id = main_frame_route_id; |
dcheng | 3ce04b6 | 2015-10-26 23:30:55 | [diff] [blame] | 2396 | create_params.main_frame_widget_routing_id = main_frame_widget_route_id; |
nasko | 48321ca3 | 2015-07-02 20:44:12 | [diff] [blame] | 2397 | create_params.main_frame_name = params.frame_name; |
alexmos | 4cf2aa3 | 2015-07-15 23:40:43 | [diff] [blame] | 2398 | create_params.opener_render_process_id = render_process_id; |
csharrison | 95f01e92 | 2017-04-24 18:52:35 | [diff] [blame] | 2399 | create_params.opener_render_frame_id = opener->GetRoutingID(); |
[email protected] | 50d326e | 2014-05-20 17:59:06 | [diff] [blame] | 2400 | create_params.opener_suppressed = params.opener_suppressed; |
nick | 3b04f32 | 2016-08-31 19:29:19 | [diff] [blame] | 2401 | if (params.disposition == WindowOpenDisposition::NEW_BACKGROUND_TAB) |
[email protected] | 50d326e | 2014-05-20 17:59:06 | [diff] [blame] | 2402 | create_params.initially_hidden = true; |
lfg | 269b702f | 2015-06-08 19:28:19 | [diff] [blame] | 2403 | create_params.renderer_initiated_creation = |
| 2404 | main_frame_route_id != MSG_ROUTING_NONE; |
[email protected] | 50d326e | 2014-05-20 17:59:06 | [diff] [blame] | 2405 | |
erikchen | bee5c962 | 2018-04-27 19:30:25 | [diff] [blame] | 2406 | std::unique_ptr<WebContents> new_contents; |
[email protected] | c453807 | 2013-03-18 02:17:55 | [diff] [blame] | 2407 | if (!is_guest) { |
| 2408 | create_params.context = view_->GetNativeView(); |
[email protected] | fc2b46b | 2014-05-03 16:33:45 | [diff] [blame] | 2409 | create_params.initial_size = GetContainerBounds().size(); |
Erik Chen | bb8e738e | 2018-04-28 14:10:43 | [diff] [blame] | 2410 | new_contents = WebContents::Create(create_params); |
[email protected] | 4858e43 | 2014-06-23 18:14:17 | [diff] [blame] | 2411 | } else { |
erikchen | bee5c962 | 2018-04-27 19:30:25 | [diff] [blame] | 2412 | new_contents = base::WrapUnique( |
| 2413 | GetBrowserPluginGuest()->CreateNewGuestWindow(create_params)); |
[email protected] | c453807 | 2013-03-18 02:17:55 | [diff] [blame] | 2414 | } |
erikchen | bee5c962 | 2018-04-27 19:30:25 | [diff] [blame] | 2415 | WebContentsImpl* raw_new_contents = |
| 2416 | static_cast<WebContentsImpl*>(new_contents.get()); |
| 2417 | raw_new_contents->GetController().SetSessionStorageNamespace( |
| 2418 | partition_id, session_storage_namespace); |
[email protected] | d1198fd | 2012-08-13 22:50:19 | [diff] [blame] | 2419 | |
alexmos | 646fec0 | 2015-07-25 00:11:49 | [diff] [blame] | 2420 | // If the new frame has a name, make sure any SiteInstances that can find |
| 2421 | // this named frame have proxies for it. Must be called after |
| 2422 | // SetSessionStorageNamespace, since this calls CreateRenderView, which uses |
| 2423 | // GetSessionStorageNamespace. |
| 2424 | if (!params.frame_name.empty()) |
erikchen | bee5c962 | 2018-04-27 19:30:25 | [diff] [blame] | 2425 | raw_new_contents->GetRenderManager()->CreateProxiesForNewNamedFrame(); |
alexmos | 646fec0 | 2015-07-25 00:11:49 | [diff] [blame] | 2426 | |
[email protected] | c453807 | 2013-03-18 02:17:55 | [diff] [blame] | 2427 | // Save the window for later if we're not suppressing the opener (since it |
[email protected] | d70bea9 | 2013-04-05 04:23:34 | [diff] [blame] | 2428 | // will be shown immediately). |
| 2429 | if (!params.opener_suppressed) { |
| 2430 | if (!is_guest) { |
erikchen | bee5c962 | 2018-04-27 19:30:25 | [diff] [blame] | 2431 | WebContentsView* new_view = raw_new_contents->view_.get(); |
[email protected] | bafe6cd | 2012-05-23 23:09:50 | [diff] [blame] | 2432 | |
[email protected] | d70bea9 | 2013-04-05 04:23:34 | [diff] [blame] | 2433 | // TODO(brettw): It seems bogus that we have to call this function on the |
| 2434 | // newly created object and give it one of its own member variables. |
avi | 3627ecac | 2015-10-16 17:40:43 | [diff] [blame] | 2435 | new_view->CreateViewForWidget( |
| 2436 | new_contents->GetRenderViewHost()->GetWidget(), false); |
[email protected] | d70bea9 | 2013-04-05 04:23:34 | [diff] [blame] | 2437 | } |
[email protected] | bafe6cd | 2012-05-23 23:09:50 | [diff] [blame] | 2438 | // Save the created window associated with the route so we can show it |
| 2439 | // later. |
nick | 5ae4d2d | 2017-01-06 01:18:35 | [diff] [blame] | 2440 | DCHECK_NE(MSG_ROUTING_NONE, main_frame_widget_route_id); |
erikchen | bee5c962 | 2018-04-27 19:30:25 | [diff] [blame] | 2441 | pending_contents_[std::make_pair(render_process_id, |
| 2442 | main_frame_widget_route_id)] = |
| 2443 | std::move(new_contents); |
| 2444 | AddDestructionObserver(raw_new_contents); |
[email protected] | bafe6cd | 2012-05-23 23:09:50 | [diff] [blame] | 2445 | } |
| 2446 | |
| 2447 | if (delegate_) { |
Bryan McQuade | d2b93c0 | 2017-07-14 22:26:31 | [diff] [blame] | 2448 | delegate_->WebContentsCreated(this, render_process_id, |
| 2449 | opener->GetRoutingID(), params.frame_name, |
erikchen | bee5c962 | 2018-04-27 19:30:25 | [diff] [blame] | 2450 | params.target_url, raw_new_contents); |
[email protected] | bafe6cd | 2012-05-23 23:09:50 | [diff] [blame] | 2451 | } |
| 2452 | |
csharrison | 95f01e92 | 2017-04-24 18:52:35 | [diff] [blame] | 2453 | if (opener) { |
pnoland | aae574e | 2017-03-06 21:04:21 | [diff] [blame] | 2454 | for (auto& observer : observers_) { |
erikchen | bee5c962 | 2018-04-27 19:30:25 | [diff] [blame] | 2455 | observer.DidOpenRequestedURL(raw_new_contents, opener, params.target_url, |
csharrison | 95f01e92 | 2017-04-24 18:52:35 | [diff] [blame] | 2456 | params.referrer, params.disposition, |
| 2457 | ui::PAGE_TRANSITION_LINK, |
pnoland | aae574e | 2017-03-06 21:04:21 | [diff] [blame] | 2458 | false, // started_from_context_menu |
| 2459 | true); // renderer_initiated |
| 2460 | } |
| 2461 | } |
| 2462 | |
Avi Drissman | ba3b1b34 | 2017-08-29 18:16:13 | [diff] [blame] | 2463 | // Any new WebContents opened while this WebContents is in fullscreen can be |
| 2464 | // used to confuse the user, so drop fullscreen. |
| 2465 | if (IsFullscreenForCurrentTab()) |
| 2466 | ExitFullscreen(true); |
| 2467 | |
[email protected] | bafe6cd | 2012-05-23 23:09:50 | [diff] [blame] | 2468 | if (params.opener_suppressed) { |
| 2469 | // When the opener is suppressed, the original renderer cannot access the |
| 2470 | // new window. As a result, we need to show and navigate the window here. |
[email protected] | eda238a1 | 2012-09-07 23:44:00 | [diff] [blame] | 2471 | bool was_blocked = false; |
erikchen | bee5c962 | 2018-04-27 19:30:25 | [diff] [blame] | 2472 | |
| 2473 | base::WeakPtr<WebContentsImpl> weak_new_contents = |
| 2474 | raw_new_contents->weak_factory_.GetWeakPtr(); |
[email protected] | eda238a1 | 2012-09-07 23:44:00 | [diff] [blame] | 2475 | if (delegate_) { |
bokan | 107a47f | 2015-02-03 23:23:39 | [diff] [blame] | 2476 | gfx::Rect initial_rect; |
nick | 0d55848 | 2017-02-13 22:27:22 | [diff] [blame] | 2477 | |
erikchen | bee5c962 | 2018-04-27 19:30:25 | [diff] [blame] | 2478 | delegate_->AddNewContents(this, std::move(new_contents), |
| 2479 | params.disposition, initial_rect, |
| 2480 | params.user_gesture, &was_blocked); |
nick | 0d55848 | 2017-02-13 22:27:22 | [diff] [blame] | 2481 | if (!weak_new_contents) |
| 2482 | return; // The delegate deleted |new_contents| during AddNewContents(). |
[email protected] | eda238a1 | 2012-09-07 23:44:00 | [diff] [blame] | 2483 | } |
erikchen | bee5c962 | 2018-04-27 19:30:25 | [diff] [blame] | 2484 | |
[email protected] | eda238a1 | 2012-09-07 23:44:00 | [diff] [blame] | 2485 | if (!was_blocked) { |
nick | 3b04f32 | 2016-08-31 19:29:19 | [diff] [blame] | 2486 | OpenURLParams open_params(params.target_url, params.referrer, |
| 2487 | WindowOpenDisposition::CURRENT_TAB, |
Sylvain Defresne | c6ccc77d | 2014-09-19 10:19:35 | [diff] [blame] | 2488 | ui::PAGE_TRANSITION_LINK, |
[email protected] | 8ff00d7 | 2012-10-23 19:12:21 | [diff] [blame] | 2489 | true /* is_renderer_initiated */); |
[email protected] | e7f2e7c | 2013-07-15 09:41:30 | [diff] [blame] | 2490 | open_params.user_gesture = params.user_gesture; |
mariakhomenko | a4971c1 | 2015-07-21 19:04:37 | [diff] [blame] | 2491 | |
| 2492 | if (delegate_ && !is_guest && |
| 2493 | !delegate_->ShouldResumeRequestsForCreatedWindow()) { |
erikchen | bee5c962 | 2018-04-27 19:30:25 | [diff] [blame] | 2494 | DCHECK(weak_new_contents); |
mariakhomenko | a4971c1 | 2015-07-21 19:04:37 | [diff] [blame] | 2495 | // We are in asynchronous add new contents path, delay opening url |
erikchen | bee5c962 | 2018-04-27 19:30:25 | [diff] [blame] | 2496 | weak_new_contents->delayed_open_url_params_.reset( |
mariakhomenko | a4971c1 | 2015-07-21 19:04:37 | [diff] [blame] | 2497 | new OpenURLParams(open_params)); |
| 2498 | } else { |
erikchen | bee5c962 | 2018-04-27 19:30:25 | [diff] [blame] | 2499 | weak_new_contents->OpenURL(open_params); |
mariakhomenko | a4971c1 | 2015-07-21 19:04:37 | [diff] [blame] | 2500 | } |
[email protected] | eda238a1 | 2012-09-07 23:44:00 | [diff] [blame] | 2501 | } |
[email protected] | bafe6cd | 2012-05-23 23:09:50 | [diff] [blame] | 2502 | } |
| 2503 | } |
| 2504 | |
avi | b734894 | 2015-12-25 20:57:10 | [diff] [blame] | 2505 | void WebContentsImpl::CreateNewWidget(int32_t render_process_id, |
| 2506 | int32_t route_id, |
Dave Tapuska | 1bdf183 | 2017-07-07 18:07:19 | [diff] [blame] | 2507 | mojom::WidgetPtr widget, |
[email protected] | 180ef24 | 2013-11-07 06:50:46 | [diff] [blame] | 2508 | blink::WebPopupType popup_type) { |
Dave Tapuska | 1bdf183 | 2017-07-07 18:07:19 | [diff] [blame] | 2509 | CreateNewWidget(render_process_id, route_id, false, std::move(widget), |
| 2510 | popup_type); |
[email protected] | bafe6cd | 2012-05-23 23:09:50 | [diff] [blame] | 2511 | } |
| 2512 | |
avi | b734894 | 2015-12-25 20:57:10 | [diff] [blame] | 2513 | void WebContentsImpl::CreateNewFullscreenWidget(int32_t render_process_id, |
Dave Tapuska | 1bdf183 | 2017-07-07 18:07:19 | [diff] [blame] | 2514 | int32_t route_id, |
| 2515 | mojom::WidgetPtr widget) { |
| 2516 | CreateNewWidget(render_process_id, route_id, true, std::move(widget), |
| 2517 | blink::kWebPopupTypeNone); |
[email protected] | bafe6cd | 2012-05-23 23:09:50 | [diff] [blame] | 2518 | } |
| 2519 | |
avi | b734894 | 2015-12-25 20:57:10 | [diff] [blame] | 2520 | void WebContentsImpl::CreateNewWidget(int32_t render_process_id, |
| 2521 | int32_t route_id, |
[email protected] | bafe6cd | 2012-05-23 23:09:50 | [diff] [blame] | 2522 | bool is_fullscreen, |
Dave Tapuska | 1bdf183 | 2017-07-07 18:07:19 | [diff] [blame] | 2523 | mojom::WidgetPtr widget, |
[email protected] | 180ef24 | 2013-11-07 06:50:46 | [diff] [blame] | 2524 | blink::WebPopupType popup_type) { |
kenrb | a26d1509 | 2016-02-10 22:00:25 | [diff] [blame] | 2525 | RenderProcessHost* process = RenderProcessHost::FromID(render_process_id); |
kenrb | b46f86a | 2015-12-07 07:53:23 | [diff] [blame] | 2526 | // A message to create a new widget can only come from an active process for |
[email protected] | a850402 | 2013-12-04 20:23:51 | [diff] [blame] | 2527 | // this WebContentsImpl instance. If any other process sends the request, |
| 2528 | // it is invalid and the process must be terminated. |
dcheng | 57e39e2 | 2016-01-21 00:25:38 | [diff] [blame] | 2529 | if (!HasMatchingProcess(&frame_tree_, render_process_id)) { |
Lukasz Anforowicz | 6f74628 | 2018-01-04 23:24:51 | [diff] [blame] | 2530 | ReceivedBadMessage(process, bad_message::WCI_NEW_WIDGET_PROCESS_MISMATCH); |
[email protected] | a850402 | 2013-12-04 20:23:51 | [diff] [blame] | 2531 | return; |
| 2532 | } |
| 2533 | |
Dave Tapuska | 485aca9 | 2017-08-08 00:47:58 | [diff] [blame] | 2534 | RenderWidgetHostImpl* widget_host = new RenderWidgetHostImpl( |
| 2535 | this, process, route_id, std::move(widget), IsHidden()); |
[email protected] | b24b68a | 2012-09-24 21:57:26 | [diff] [blame] | 2536 | |
[email protected] | cfd80b0 | 2014-05-01 17:46:48 | [diff] [blame] | 2537 | RenderWidgetHostViewBase* widget_view = |
| 2538 | static_cast<RenderWidgetHostViewBase*>( |
| 2539 | view_->CreateViewForPopupWidget(widget_host)); |
[email protected] | 83918ec | 2013-01-10 15:37:19 | [diff] [blame] | 2540 | if (!widget_view) |
| 2541 | return; |
[email protected] | bafe6cd | 2012-05-23 23:09:50 | [diff] [blame] | 2542 | if (!is_fullscreen) { |
| 2543 | // Popups should not get activated. |
| 2544 | widget_view->SetPopupType(popup_type); |
| 2545 | } |
| 2546 | // Save the created widget associated with the route so we can show it later. |
alexmos | c2a8cec | 2016-05-23 22:19:53 | [diff] [blame] | 2547 | pending_widget_views_[std::make_pair(render_process_id, route_id)] = |
| 2548 | widget_view; |
[email protected] | bafe6cd | 2012-05-23 23:09:50 | [diff] [blame] | 2549 | } |
| 2550 | |
alexmos | c2a8cec | 2016-05-23 22:19:53 | [diff] [blame] | 2551 | void WebContentsImpl::ShowCreatedWindow(int process_id, |
nick | 5ae4d2d | 2017-01-06 01:18:35 | [diff] [blame] | 2552 | int main_frame_widget_route_id, |
[email protected] | bafe6cd | 2012-05-23 23:09:50 | [diff] [blame] | 2553 | WindowOpenDisposition disposition, |
bokan | 107a47f | 2015-02-03 23:23:39 | [diff] [blame] | 2554 | const gfx::Rect& initial_rect, |
[email protected] | bafe6cd | 2012-05-23 23:09:50 | [diff] [blame] | 2555 | bool user_gesture) { |
erikchen | bee5c962 | 2018-04-27 19:30:25 | [diff] [blame] | 2556 | std::unique_ptr<WebContents> popup = |
nick | 5ae4d2d | 2017-01-06 01:18:35 | [diff] [blame] | 2557 | GetCreatedWindow(process_id, main_frame_widget_route_id); |
nick | 0d55848 | 2017-02-13 22:27:22 | [diff] [blame] | 2558 | if (popup) { |
erikchen | bee5c962 | 2018-04-27 19:30:25 | [diff] [blame] | 2559 | WebContentsImpl* raw_popup = static_cast<WebContentsImpl*>(popup.get()); |
[email protected] | eda238a1 | 2012-09-07 23:44:00 | [diff] [blame] | 2560 | WebContentsDelegate* delegate = GetDelegate(); |
erikchen | bee5c962 | 2018-04-27 19:30:25 | [diff] [blame] | 2561 | raw_popup->is_resume_pending_ = true; |
mariakhomenko | 44bdc473 | 2015-04-29 01:55:38 | [diff] [blame] | 2562 | if (!delegate || delegate->ShouldResumeRequestsForCreatedWindow()) |
erikchen | bee5c962 | 2018-04-27 19:30:25 | [diff] [blame] | 2563 | raw_popup->ResumeLoadingCreatedWebContents(); |
mariakhomenko | 44bdc473 | 2015-04-29 01:55:38 | [diff] [blame] | 2564 | |
erikchen | bee5c962 | 2018-04-27 19:30:25 | [diff] [blame] | 2565 | base::WeakPtr<WebContentsImpl> weak_popup = |
| 2566 | raw_popup->weak_factory_.GetWeakPtr(); |
[email protected] | eda238a1 | 2012-09-07 23:44:00 | [diff] [blame] | 2567 | if (delegate) { |
erikchen | bee5c962 | 2018-04-27 19:30:25 | [diff] [blame] | 2568 | delegate->AddNewContents(this, std::move(popup), disposition, |
| 2569 | initial_rect, user_gesture, nullptr); |
nick | 0d55848 | 2017-02-13 22:27:22 | [diff] [blame] | 2570 | if (!weak_popup) |
| 2571 | return; // The delegate deleted |popup| during AddNewContents(). |
[email protected] | eda238a1 | 2012-09-07 23:44:00 | [diff] [blame] | 2572 | } |
nick | 5ae4d2d | 2017-01-06 01:18:35 | [diff] [blame] | 2573 | |
erikchen | bee5c962 | 2018-04-27 19:30:25 | [diff] [blame] | 2574 | RenderWidgetHostImpl* rwh = |
| 2575 | weak_popup->GetMainFrame()->GetRenderWidgetHost(); |
nick | 0d55848 | 2017-02-13 22:27:22 | [diff] [blame] | 2576 | DCHECK_EQ(main_frame_widget_route_id, rwh->GetRoutingID()); |
nick | 5ae4d2d | 2017-01-06 01:18:35 | [diff] [blame] | 2577 | rwh->Send(new ViewMsg_Move_ACK(rwh->GetRoutingID())); |
[email protected] | eda238a1 | 2012-09-07 23:44:00 | [diff] [blame] | 2578 | } |
[email protected] | bafe6cd | 2012-05-23 23:09:50 | [diff] [blame] | 2579 | } |
| 2580 | |
alexmos | c2a8cec | 2016-05-23 22:19:53 | [diff] [blame] | 2581 | void WebContentsImpl::ShowCreatedWidget(int process_id, |
| 2582 | int route_id, |
bokan | 107a47f | 2015-02-03 23:23:39 | [diff] [blame] | 2583 | const gfx::Rect& initial_rect) { |
alexmos | c2a8cec | 2016-05-23 22:19:53 | [diff] [blame] | 2584 | ShowCreatedWidget(process_id, route_id, false, initial_rect); |
[email protected] | bafe6cd | 2012-05-23 23:09:50 | [diff] [blame] | 2585 | } |
| 2586 | |
alexmos | c2a8cec | 2016-05-23 22:19:53 | [diff] [blame] | 2587 | void WebContentsImpl::ShowCreatedFullscreenWidget(int process_id, |
| 2588 | int route_id) { |
| 2589 | ShowCreatedWidget(process_id, route_id, true, gfx::Rect()); |
[email protected] | bafe6cd | 2012-05-23 23:09:50 | [diff] [blame] | 2590 | } |
| 2591 | |
alexmos | c2a8cec | 2016-05-23 22:19:53 | [diff] [blame] | 2592 | void WebContentsImpl::ShowCreatedWidget(int process_id, |
| 2593 | int route_id, |
[email protected] | bafe6cd | 2012-05-23 23:09:50 | [diff] [blame] | 2594 | bool is_fullscreen, |
bokan | 107a47f | 2015-02-03 23:23:39 | [diff] [blame] | 2595 | const gfx::Rect& initial_rect) { |
[email protected] | cfd80b0 | 2014-05-01 17:46:48 | [diff] [blame] | 2596 | RenderWidgetHostViewBase* widget_host_view = |
alexmos | c2a8cec | 2016-05-23 22:19:53 | [diff] [blame] | 2597 | static_cast<RenderWidgetHostViewBase*>( |
| 2598 | GetCreatedWidget(process_id, route_id)); |
[email protected] | bafe6cd | 2012-05-23 23:09:50 | [diff] [blame] | 2599 | if (!widget_host_view) |
| 2600 | return; |
[email protected] | cfd80b0 | 2014-05-01 17:46:48 | [diff] [blame] | 2601 | |
Ivan Kotenkov | 2c0d2bb3 | 2017-11-01 15:41:28 | [diff] [blame] | 2602 | RenderWidgetHostView* view = nullptr; |
lfg | c740d4b2 | 2016-04-15 16:45:33 | [diff] [blame] | 2603 | if (GetOuterWebContents()) { |
| 2604 | view = GetOuterWebContents()->GetRenderWidgetHostView(); |
[email protected] | cfd80b0 | 2014-05-01 17:46:48 | [diff] [blame] | 2605 | } else { |
| 2606 | view = GetRenderWidgetHostView(); |
| 2607 | } |
| 2608 | |
[email protected] | 4aebbca | 2013-09-17 22:26:49 | [diff] [blame] | 2609 | if (is_fullscreen) { |
[email protected] | d7f80ba | 2013-10-12 07:42:31 | [diff] [blame] | 2610 | DCHECK_EQ(MSG_ROUTING_NONE, fullscreen_widget_routing_id_); |
[email protected] | 0b43199 | 2014-06-24 00:08:03 | [diff] [blame] | 2611 | view_->StoreFocus(); |
alexmos | c9e76ec | 2016-05-16 22:59:37 | [diff] [blame] | 2612 | fullscreen_widget_process_id_ = |
| 2613 | widget_host_view->GetRenderWidgetHost()->GetProcess()->GetID(); |
[email protected] | d7f80ba | 2013-10-12 07:42:31 | [diff] [blame] | 2614 | fullscreen_widget_routing_id_ = route_id; |
[email protected] | 4aebbca | 2013-09-17 22:26:49 | [diff] [blame] | 2615 | if (delegate_ && delegate_->EmbedsFullscreenWidget()) { |
| 2616 | widget_host_view->InitAsChild(GetRenderWidgetHostView()->GetNativeView()); |
Dave Tapuska | 3ed4419 | 2018-05-01 18:53:30 | [diff] [blame] | 2617 | delegate_->EnterFullscreenModeForTab(this, GURL(), |
| 2618 | blink::WebFullscreenOptions()); |
[email protected] | 4aebbca | 2013-09-17 22:26:49 | [diff] [blame] | 2619 | } else { |
[email protected] | cfd80b0 | 2014-05-01 17:46:48 | [diff] [blame] | 2620 | widget_host_view->InitAsFullscreen(view); |
[email protected] | 4aebbca | 2013-09-17 22:26:49 | [diff] [blame] | 2621 | } |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 2622 | for (auto& observer : observers_) |
| 2623 | observer.DidShowFullscreenWidget(); |
[email protected] | 4aebbca | 2013-09-17 22:26:49 | [diff] [blame] | 2624 | if (!widget_host_view->HasFocus()) |
| 2625 | widget_host_view->Focus(); |
| 2626 | } else { |
bokan | 107a47f | 2015-02-03 23:23:39 | [diff] [blame] | 2627 | widget_host_view->InitAsPopup(view, initial_rect); |
[email protected] | 4aebbca | 2013-09-17 22:26:49 | [diff] [blame] | 2628 | } |
[email protected] | 8905450 | 2012-06-03 10:29:24 | [diff] [blame] | 2629 | |
yiyix | cb1fbc4f | 2018-03-16 19:54:08 | [diff] [blame] | 2630 | RenderWidgetHostImpl* render_widget_host_impl = widget_host_view->host(); |
[email protected] | 8905450 | 2012-06-03 10:29:24 | [diff] [blame] | 2631 | render_widget_host_impl->Init(); |
[email protected] | d7f80ba | 2013-10-12 07:42:31 | [diff] [blame] | 2632 | // Only allow privileged mouse lock for fullscreen render widget, which is |
| 2633 | // used to implement Pepper Flash fullscreen. |
| 2634 | render_widget_host_impl->set_allow_privileged_mouse_lock(is_fullscreen); |
[email protected] | bafe6cd | 2012-05-23 23:09:50 | [diff] [blame] | 2635 | } |
| 2636 | |
erikchen | bee5c962 | 2018-04-27 19:30:25 | [diff] [blame] | 2637 | std::unique_ptr<WebContents> WebContentsImpl::GetCreatedWindow( |
nick | 5ae4d2d | 2017-01-06 01:18:35 | [diff] [blame] | 2638 | int process_id, |
| 2639 | int main_frame_widget_route_id) { |
| 2640 | auto key = std::make_pair(process_id, main_frame_widget_route_id); |
| 2641 | auto iter = pending_contents_.find(key); |
[email protected] | bafe6cd | 2012-05-23 23:09:50 | [diff] [blame] | 2642 | |
| 2643 | // Certain systems can block the creation of new windows. If we didn't succeed |
| 2644 | // in creating one, just return NULL. |
alexmos | c2a8cec | 2016-05-23 22:19:53 | [diff] [blame] | 2645 | if (iter == pending_contents_.end()) |
| 2646 | return nullptr; |
[email protected] | bafe6cd | 2012-05-23 23:09:50 | [diff] [blame] | 2647 | |
erikchen | bee5c962 | 2018-04-27 19:30:25 | [diff] [blame] | 2648 | std::unique_ptr<WebContents> new_contents = std::move(iter->second); |
nick | 5ae4d2d | 2017-01-06 01:18:35 | [diff] [blame] | 2649 | pending_contents_.erase(key); |
erikchen | bee5c962 | 2018-04-27 19:30:25 | [diff] [blame] | 2650 | WebContentsImpl* raw_new_contents = |
| 2651 | static_cast<WebContentsImpl*>(new_contents.get()); |
| 2652 | RemoveDestructionObserver(raw_new_contents); |
[email protected] | bafe6cd | 2012-05-23 23:09:50 | [diff] [blame] | 2653 | |
[email protected] | d70bea9 | 2013-04-05 04:23:34 | [diff] [blame] | 2654 | // Don't initialize the guest WebContents immediately. |
erikchen | bee5c962 | 2018-04-27 19:30:25 | [diff] [blame] | 2655 | if (BrowserPluginGuest::IsGuest(raw_new_contents)) |
[email protected] | d70bea9 | 2013-04-05 04:23:34 | [diff] [blame] | 2656 | return new_contents; |
| 2657 | |
nick | 5ae4d2d | 2017-01-06 01:18:35 | [diff] [blame] | 2658 | if (!new_contents->GetMainFrame()->GetProcess()->HasConnection() || |
| 2659 | !new_contents->GetMainFrame()->GetView()) { |
alexmos | c2a8cec | 2016-05-23 22:19:53 | [diff] [blame] | 2660 | return nullptr; |
nick | 5ae4d2d | 2017-01-06 01:18:35 | [diff] [blame] | 2661 | } |
[email protected] | bafe6cd | 2012-05-23 23:09:50 | [diff] [blame] | 2662 | |
[email protected] | bafe6cd | 2012-05-23 23:09:50 | [diff] [blame] | 2663 | return new_contents; |
| 2664 | } |
| 2665 | |
alexmos | c2a8cec | 2016-05-23 22:19:53 | [diff] [blame] | 2666 | RenderWidgetHostView* WebContentsImpl::GetCreatedWidget(int process_id, |
| 2667 | int route_id) { |
| 2668 | auto iter = pending_widget_views_.find(std::make_pair(process_id, route_id)); |
[email protected] | bafe6cd | 2012-05-23 23:09:50 | [diff] [blame] | 2669 | if (iter == pending_widget_views_.end()) { |
| 2670 | DCHECK(false); |
alexmos | c2a8cec | 2016-05-23 22:19:53 | [diff] [blame] | 2671 | return nullptr; |
[email protected] | bafe6cd | 2012-05-23 23:09:50 | [diff] [blame] | 2672 | } |
| 2673 | |
| 2674 | RenderWidgetHostView* widget_host_view = iter->second; |
alexmos | c2a8cec | 2016-05-23 22:19:53 | [diff] [blame] | 2675 | pending_widget_views_.erase(std::make_pair(process_id, route_id)); |
[email protected] | bafe6cd | 2012-05-23 23:09:50 | [diff] [blame] | 2676 | |
| 2677 | RenderWidgetHost* widget_host = widget_host_view->GetRenderWidgetHost(); |
| 2678 | if (!widget_host->GetProcess()->HasConnection()) { |
| 2679 | // The view has gone away or the renderer crashed. Nothing to do. |
alexmos | c2a8cec | 2016-05-23 22:19:53 | [diff] [blame] | 2680 | return nullptr; |
[email protected] | bafe6cd | 2012-05-23 23:09:50 | [diff] [blame] | 2681 | } |
| 2682 | |
| 2683 | return widget_host_view; |
| 2684 | } |
| 2685 | |
[email protected] | f13b420 | 2012-06-12 23:53:23 | [diff] [blame] | 2686 | void WebContentsImpl::RequestMediaAccessPermission( |
[email protected] | 33662e5 | 2013-01-07 21:31:09 | [diff] [blame] | 2687 | const MediaStreamRequest& request, |
[email protected] | 8ff00d7 | 2012-10-23 19:12:21 | [diff] [blame] | 2688 | const MediaResponseCallback& callback) { |
[email protected] | d19b84b | 2014-03-14 11:52:37 | [diff] [blame] | 2689 | if (delegate_) { |
[email protected] | f13b420 | 2012-06-12 23:53:23 | [diff] [blame] | 2690 | delegate_->RequestMediaAccessPermission(this, request, callback); |
[email protected] | d19b84b | 2014-03-14 11:52:37 | [diff] [blame] | 2691 | } else { |
dcheng | 5971627 | 2016-04-09 05:19:08 | [diff] [blame] | 2692 | callback.Run(MediaStreamDevices(), MEDIA_DEVICE_FAILED_DUE_TO_SHUTDOWN, |
| 2693 | std::unique_ptr<MediaStreamUI>()); |
[email protected] | d19b84b | 2014-03-14 11:52:37 | [diff] [blame] | 2694 | } |
[email protected] | f13b420 | 2012-06-12 23:53:23 | [diff] [blame] | 2695 | } |
| 2696 | |
Chandan Padhi | a4b8bcb7 | 2017-09-12 16:41:04 | [diff] [blame] | 2697 | bool WebContentsImpl::CheckMediaAccessPermission( |
Raymes Khoury | ad7c24a1 | 2018-03-05 23:22:58 | [diff] [blame] | 2698 | RenderFrameHost* render_frame_host, |
Chandan Padhi | a4b8bcb7 | 2017-09-12 16:41:04 | [diff] [blame] | 2699 | const url::Origin& security_origin, |
| 2700 | MediaStreamType type) { |
grunell | 657d4d8 | 2014-09-18 00:09:43 | [diff] [blame] | 2701 | DCHECK(type == MEDIA_DEVICE_AUDIO_CAPTURE || |
| 2702 | type == MEDIA_DEVICE_VIDEO_CAPTURE); |
Chandan Padhi | a4b8bcb7 | 2017-09-12 16:41:04 | [diff] [blame] | 2703 | return delegate_ && delegate_->CheckMediaAccessPermission( |
Raymes Khoury | ad7c24a1 | 2018-03-05 23:22:58 | [diff] [blame] | 2704 | render_frame_host, security_origin.GetURL(), type); |
grunell | 657d4d8 | 2014-09-18 00:09:43 | [diff] [blame] | 2705 | } |
| 2706 | |
guidou | 8a440b84 | 2017-01-30 13:58:43 | [diff] [blame] | 2707 | std::string WebContentsImpl::GetDefaultMediaDeviceID(MediaStreamType type) { |
| 2708 | if (!delegate_) |
| 2709 | return std::string(); |
| 2710 | return delegate_->GetDefaultMediaDeviceID(this, type); |
| 2711 | } |
| 2712 | |
[email protected] | cc920043 | 2013-07-23 23:02:40 | [diff] [blame] | 2713 | SessionStorageNamespace* WebContentsImpl::GetSessionStorageNamespace( |
| 2714 | SiteInstance* instance) { |
| 2715 | return controller_.GetSessionStorageNamespace(instance); |
| 2716 | } |
| 2717 | |
[email protected] | 6de7fc48 | 2014-06-06 10:46:44 | [diff] [blame] | 2718 | SessionStorageNamespaceMap WebContentsImpl::GetSessionStorageNamespaceMap() { |
| 2719 | return controller_.GetSessionStorageNamespaceMap(); |
| 2720 | } |
| 2721 | |
[email protected] | 9b159a5 | 2013-10-03 17:24:55 | [diff] [blame] | 2722 | FrameTree* WebContentsImpl::GetFrameTree() { |
| 2723 | return &frame_tree_; |
| 2724 | } |
| 2725 | |
aelias | 5252baa | 2016-04-10 01:18:02 | [diff] [blame] | 2726 | bool WebContentsImpl::IsOverridingUserAgent() { |
| 2727 | return GetController().GetVisibleEntry() && |
| 2728 | GetController().GetVisibleEntry()->GetIsOverridingUserAgent(); |
| 2729 | } |
| 2730 | |
avi | 85ee836 | 2016-10-08 02:09:08 | [diff] [blame] | 2731 | bool WebContentsImpl::IsJavaScriptDialogShowing() const { |
| 2732 | return is_showing_javascript_dialog_; |
| 2733 | } |
| 2734 | |
avi | c031d39 | 2017-03-03 03:09:42 | [diff] [blame] | 2735 | bool WebContentsImpl::ShouldIgnoreUnresponsiveRenderer() { |
| 2736 | // Ignore unresponsive renderers if the debugger is attached to them since the |
| 2737 | // unresponsiveness might be a result of the renderer sitting on a breakpoint. |
| 2738 | // |
| 2739 | // TODO(pfeldman): Fix this to only return true if the renderer is *actually* |
| 2740 | // sitting on a breakpoint. https://crbug.com/684202 |
| 2741 | return DevToolsAgentHost::IsDebuggerAttached(this); |
| 2742 | } |
| 2743 | |
Doug Turner | 63f3c7b | 2017-07-29 05:10:01 | [diff] [blame] | 2744 | ui::AXMode WebContentsImpl::GetAccessibilityMode() const { |
[email protected] | 9564021 | 2014-07-26 18:14:30 | [diff] [blame] | 2745 | return accessibility_mode_; |
| 2746 | } |
| 2747 | |
Dominic Mazzoni | a7b0edb2 | 2017-08-09 16:32:51 | [diff] [blame] | 2748 | void WebContentsImpl::AccessibilityEventReceived( |
| 2749 | const std::vector<AXEventNotificationDetails>& details) { |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 2750 | for (auto& observer : observers_) |
Dominic Mazzoni | a7b0edb2 | 2017-08-09 16:32:51 | [diff] [blame] | 2751 | observer.AccessibilityEventReceived(details); |
[email protected] | 31a71eaf | 2014-03-13 01:47:36 | [diff] [blame] | 2752 | } |
| 2753 | |
dmazzoni | 2400c46 | 2016-08-23 15:07:13 | [diff] [blame] | 2754 | void WebContentsImpl::AccessibilityLocationChangesReceived( |
| 2755 | const std::vector<AXLocationChangeNotificationDetails>& details) { |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 2756 | for (auto& observer : observers_) |
Dominic Mazzoni | a7b0edb2 | 2017-08-09 16:32:51 | [diff] [blame] | 2757 | observer.AccessibilityLocationChangesReceived(details); |
dmazzoni | 2400c46 | 2016-08-23 15:07:13 | [diff] [blame] | 2758 | } |
| 2759 | |
dmazzoni | a656928e | 2014-09-15 20:28:54 | [diff] [blame] | 2760 | RenderFrameHost* WebContentsImpl::GetGuestByInstanceID( |
fsamuel | 833ee7c | 2015-02-13 23:40:40 | [diff] [blame] | 2761 | RenderFrameHost* render_frame_host, |
dmazzoni | a656928e | 2014-09-15 20:28:54 | [diff] [blame] | 2762 | int browser_plugin_instance_id) { |
| 2763 | BrowserPluginGuestManager* guest_manager = |
| 2764 | GetBrowserContext()->GetGuestManager(); |
fsamuel | 9cbc00a | 2015-04-17 20:30:20 | [diff] [blame] | 2765 | if (!guest_manager) |
| 2766 | return nullptr; |
| 2767 | |
dmazzoni | a656928e | 2014-09-15 20:28:54 | [diff] [blame] | 2768 | WebContents* guest = guest_manager->GetGuestByInstanceID( |
fsamuel | 2e9413d | 2015-02-25 01:25:44 | [diff] [blame] | 2769 | render_frame_host->GetProcess()->GetID(), browser_plugin_instance_id); |
dmazzoni | a656928e | 2014-09-15 20:28:54 | [diff] [blame] | 2770 | if (!guest) |
fsamuel | 9cbc00a | 2015-04-17 20:30:20 | [diff] [blame] | 2771 | return nullptr; |
| 2772 | |
dmazzoni | a656928e | 2014-09-15 20:28:54 | [diff] [blame] | 2773 | return guest->GetMainFrame(); |
| 2774 | } |
| 2775 | |
Ke He | 7319dbe | 2017-11-09 05:54:44 | [diff] [blame] | 2776 | device::mojom::GeolocationContext* WebContentsImpl::GetGeolocationContext() { |
| 2777 | if (geolocation_context_) |
| 2778 | return geolocation_context_.get(); |
| 2779 | |
| 2780 | auto request = mojo::MakeRequest(&geolocation_context_); |
| 2781 | if (!ServiceManagerConnection::GetForProcess()) |
| 2782 | return geolocation_context_.get(); |
| 2783 | |
| 2784 | service_manager::Connector* connector = |
| 2785 | ServiceManagerConnection::GetForProcess()->GetConnector(); |
| 2786 | connector->BindInterface(device::mojom::kServiceName, std::move(request)); |
Conley Owens | 6894c4f | 2017-07-10 19:29:13 | [diff] [blame] | 2787 | return geolocation_context_.get(); |
blundell | c57b93f | 2014-10-29 13:19:57 | [diff] [blame] | 2788 | } |
| 2789 | |
ke.he | 98b761e | 2017-05-09 05:59:17 | [diff] [blame] | 2790 | device::mojom::WakeLockContext* WebContentsImpl::GetWakeLockContext() { |
blundell | d8cd72b | 2017-03-28 07:18:38 | [diff] [blame] | 2791 | if (!wake_lock_context_host_) |
| 2792 | wake_lock_context_host_.reset(new WakeLockContextHost(this)); |
blundell | e75a8f9 | 2017-03-27 08:11:17 | [diff] [blame] | 2793 | return wake_lock_context_host_->GetWakeLockContext(); |
alogvinov | f50445a | 2015-10-30 13:00:12 | [diff] [blame] | 2794 | } |
| 2795 | |
juncai | 8e8d6ec | 2017-06-06 20:48:18 | [diff] [blame] | 2796 | device::mojom::WakeLock* WebContentsImpl::GetRendererWakeLock() { |
| 2797 | // WebContents creates a long-lived connection to one WakeLock. |
ke.he | 98b761e | 2017-05-09 05:59:17 | [diff] [blame] | 2798 | // All the frames' requests will be added into the BindingSet of |
juncai | 8e8d6ec | 2017-06-06 20:48:18 | [diff] [blame] | 2799 | // WakeLock via this connection. |
ke.he | 98b761e | 2017-05-09 05:59:17 | [diff] [blame] | 2800 | if (!renderer_wake_lock_) { |
| 2801 | device::mojom::WakeLockContext* wake_lock_context = GetWakeLockContext(); |
| 2802 | if (!wake_lock_context) { |
| 2803 | return nullptr; |
| 2804 | } |
ke.he | f435c1e8 | 2017-05-11 04:09:10 | [diff] [blame] | 2805 | wake_lock_context->GetWakeLock( |
Daniel Erat | 28922ba | 2017-11-08 16:18:26 | [diff] [blame] | 2806 | device::mojom::WakeLockType::kPreventDisplaySleep, |
| 2807 | device::mojom::WakeLockReason::kOther, "Wake Lock API", |
ke.he | f435c1e8 | 2017-05-11 04:09:10 | [diff] [blame] | 2808 | mojo::MakeRequest(&renderer_wake_lock_)); |
ke.he | 98b761e | 2017-05-09 05:59:17 | [diff] [blame] | 2809 | } |
| 2810 | return renderer_wake_lock_.get(); |
| 2811 | } |
| 2812 | |
blundell | f5316fc | 2017-05-15 11:49:03 | [diff] [blame] | 2813 | #if defined(OS_ANDROID) |
Han Leon | f6a2e5f | 2017-05-23 13:40:47 | [diff] [blame] | 2814 | void WebContentsImpl::GetNFC(device::mojom::NFCRequest request) { |
blundell | f5316fc | 2017-05-15 11:49:03 | [diff] [blame] | 2815 | if (!nfc_host_) |
| 2816 | nfc_host_.reset(new NFCHost(this)); |
| 2817 | nfc_host_->GetNFC(std::move(request)); |
| 2818 | } |
| 2819 | #endif |
| 2820 | |
Evan Stade | 5e750ad0 | 2017-08-07 21:59:27 | [diff] [blame] | 2821 | void WebContentsImpl::SetNotWaitingForResponse() { |
| 2822 | if (waiting_for_response_ == false) |
| 2823 | return; |
| 2824 | |
| 2825 | waiting_for_response_ = false; |
| 2826 | if (delegate_) |
| 2827 | delegate_->LoadingStateChanged(this, is_load_to_different_document_); |
Chris Hamilton | f82f2a70 | 2018-02-15 19:37:29 | [diff] [blame] | 2828 | for (auto& observer : observers_) |
| 2829 | observer.DidReceiveResponse(); |
Evan Stade | 5e750ad0 | 2017-08-07 21:59:27 | [diff] [blame] | 2830 | } |
| 2831 | |
lfg | bb9c28a | 2016-03-01 03:19:49 | [diff] [blame] | 2832 | void WebContentsImpl::SendScreenRects() { |
kenrb | c52e1b4e | 2016-03-20 01:03:37 | [diff] [blame] | 2833 | for (FrameTreeNode* node : frame_tree_.Nodes()) { |
kenrb | 0e8dc20 | 2016-05-30 19:51:40 | [diff] [blame] | 2834 | if (node->current_frame_host()->is_local_root()) |
kenrb | c52e1b4e | 2016-03-20 01:03:37 | [diff] [blame] | 2835 | node->current_frame_host()->GetRenderWidgetHost()->SendScreenRects(); |
| 2836 | } |
lfg | bb9c28a | 2016-03-01 03:19:49 | [diff] [blame] | 2837 | |
lfg | db5c4ed | 2016-03-04 23:09:07 | [diff] [blame] | 2838 | RenderWidgetHostViewBase* rwhv = |
| 2839 | static_cast<RenderWidgetHostViewBase*>(GetRenderWidgetHostView()); |
| 2840 | if (rwhv) { |
| 2841 | SendPageMessage(new PageMsg_UpdateWindowScreenRect( |
| 2842 | MSG_ROUTING_NONE, rwhv->GetBoundsInRootWindow())); |
| 2843 | } |
| 2844 | |
avallee | 9f43b01 | 2016-11-26 07:02:10 | [diff] [blame] | 2845 | if (browser_plugin_embedder_ && !is_being_destroyed_) |
[email protected] | a7568e6 | 2013-06-14 07:50:44 | [diff] [blame] | 2846 | browser_plugin_embedder_->DidSendScreenRects(); |
[email protected] | 32deec6 | 2013-05-15 23:55:04 | [diff] [blame] | 2847 | } |
| 2848 | |
ekaramad | add88229 | 2016-06-08 15:22:56 | [diff] [blame] | 2849 | TextInputManager* WebContentsImpl::GetTextInputManager() { |
| 2850 | if (GetOuterWebContents()) |
| 2851 | return GetOuterWebContents()->GetTextInputManager(); |
| 2852 | |
| 2853 | if (!text_input_manager_) |
| 2854 | text_input_manager_.reset(new TextInputManager()); |
| 2855 | |
| 2856 | return text_input_manager_.get(); |
| 2857 | } |
| 2858 | |
paulmeyer | 7f6f1d4f | 2016-11-15 00:00:27 | [diff] [blame] | 2859 | bool WebContentsImpl::OnUpdateDragCursor() { |
| 2860 | if (browser_plugin_embedder_) |
| 2861 | return browser_plugin_embedder_->OnUpdateDragCursor(); |
| 2862 | return false; |
| 2863 | } |
| 2864 | |
kenrb | 11f213a | 2017-03-24 18:12:06 | [diff] [blame] | 2865 | bool WebContentsImpl::IsWidgetForMainFrame( |
| 2866 | RenderWidgetHostImpl* render_widget_host) { |
| 2867 | return render_widget_host == GetMainFrame()->GetRenderWidgetHost(); |
| 2868 | } |
| 2869 | |
[email protected] | 9564021 | 2014-07-26 18:14:30 | [diff] [blame] | 2870 | BrowserAccessibilityManager* |
| 2871 | WebContentsImpl::GetRootBrowserAccessibilityManager() { |
Dominic Mazzoni | efb5f9e3 | 2017-12-21 01:08:22 | [diff] [blame] | 2872 | RenderFrameHostImpl* rfh = static_cast<RenderFrameHostImpl*>( |
| 2873 | ShowingInterstitialPage() ? GetInterstitialPage()->GetMainFrame() |
| 2874 | : GetMainFrame()); |
creis | c014b40 | 2015-04-23 16:41:45 | [diff] [blame] | 2875 | return rfh ? rfh->browser_accessibility_manager() : nullptr; |
[email protected] | 9564021 | 2014-07-26 18:14:30 | [diff] [blame] | 2876 | } |
| 2877 | |
| 2878 | BrowserAccessibilityManager* |
| 2879 | WebContentsImpl::GetOrCreateRootBrowserAccessibilityManager() { |
Dominic Mazzoni | efb5f9e3 | 2017-12-21 01:08:22 | [diff] [blame] | 2880 | RenderFrameHostImpl* rfh = static_cast<RenderFrameHostImpl*>( |
| 2881 | ShowingInterstitialPage() ? GetInterstitialPage()->GetMainFrame() |
| 2882 | : GetMainFrame()); |
creis | c014b40 | 2015-04-23 16:41:45 | [diff] [blame] | 2883 | return rfh ? rfh->GetOrCreateBrowserAccessibilityManager() : nullptr; |
[email protected] | 9564021 | 2014-07-26 18:14:30 | [diff] [blame] | 2884 | } |
| 2885 | |
Dave Tapuska | b336b92 | 2017-07-06 19:24:05 | [diff] [blame] | 2886 | void WebContentsImpl::ExecuteEditCommand( |
| 2887 | const std::string& command, |
| 2888 | const base::Optional<base::string16>& value) { |
| 2889 | RenderFrameHostImpl* focused_frame = GetFocusedFrame(); |
| 2890 | if (!focused_frame) |
| 2891 | return; |
| 2892 | |
| 2893 | focused_frame->GetFrameInputHandler()->ExecuteEditCommand(command, value); |
| 2894 | } |
| 2895 | |
mohsen | 7ab1ec16ec | 2015-07-02 18:26:23 | [diff] [blame] | 2896 | void WebContentsImpl::MoveRangeSelectionExtent(const gfx::Point& extent) { |
Dave Tapuska | b336b92 | 2017-07-06 19:24:05 | [diff] [blame] | 2897 | RenderFrameHostImpl* focused_frame = GetFocusedFrame(); |
mohsen | 7ab1ec16ec | 2015-07-02 18:26:23 | [diff] [blame] | 2898 | if (!focused_frame) |
| 2899 | return; |
| 2900 | |
dtapuska | 9d46ef7d | 2017-05-26 19:06:06 | [diff] [blame] | 2901 | focused_frame->GetFrameInputHandler()->MoveRangeSelectionExtent(extent); |
mohsen | 7ab1ec16ec | 2015-07-02 18:26:23 | [diff] [blame] | 2902 | } |
| 2903 | |
| 2904 | void WebContentsImpl::SelectRange(const gfx::Point& base, |
| 2905 | const gfx::Point& extent) { |
Dave Tapuska | b336b92 | 2017-07-06 19:24:05 | [diff] [blame] | 2906 | RenderFrameHostImpl* focused_frame = GetFocusedFrame(); |
mohsen | 7ab1ec16ec | 2015-07-02 18:26:23 | [diff] [blame] | 2907 | if (!focused_frame) |
| 2908 | return; |
| 2909 | |
dtapuska | 9d46ef7d | 2017-05-26 19:06:06 | [diff] [blame] | 2910 | focused_frame->GetFrameInputHandler()->SelectRange(base, extent); |
mohsen | 7ab1ec16ec | 2015-07-02 18:26:23 | [diff] [blame] | 2911 | } |
| 2912 | |
Dave Tapuska | b336b92 | 2017-07-06 19:24:05 | [diff] [blame] | 2913 | void WebContentsImpl::MoveCaret(const gfx::Point& extent) { |
| 2914 | RenderFrameHostImpl* focused_frame = GetFocusedFrame(); |
| 2915 | if (!focused_frame) |
| 2916 | return; |
| 2917 | |
| 2918 | focused_frame->GetFrameInputHandler()->MoveCaret(extent); |
| 2919 | } |
| 2920 | |
Shimi Zhang | 37deeb2 | 2017-09-28 00:59:01 | [diff] [blame] | 2921 | void WebContentsImpl::AdjustSelectionByCharacterOffset( |
| 2922 | int start_adjust, |
| 2923 | int end_adjust, |
| 2924 | bool show_selection_menu) { |
Dave Tapuska | b336b92 | 2017-07-06 19:24:05 | [diff] [blame] | 2925 | RenderFrameHostImpl* focused_frame = GetFocusedFrame(); |
aurimas | ab031902 | 2015-07-10 21:57:38 | [diff] [blame] | 2926 | if (!focused_frame) |
| 2927 | return; |
| 2928 | |
Shimi Zhang | 37deeb2 | 2017-09-28 00:59:01 | [diff] [blame] | 2929 | using blink::mojom::SelectionMenuBehavior; |
dtapuska | 9d46ef7d | 2017-05-26 19:06:06 | [diff] [blame] | 2930 | focused_frame->GetFrameInputHandler()->AdjustSelectionByCharacterOffset( |
Shimi Zhang | 37deeb2 | 2017-09-28 00:59:01 | [diff] [blame] | 2931 | start_adjust, end_adjust, |
| 2932 | show_selection_menu ? SelectionMenuBehavior::kShow |
| 2933 | : SelectionMenuBehavior::kHide); |
aurimas | ab031902 | 2015-07-10 21:57:38 | [diff] [blame] | 2934 | } |
| 2935 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 2936 | void WebContentsImpl::UpdatePreferredSize(const gfx::Size& pref_size) { |
[email protected] | 222f582 | 2014-02-05 23:40:49 | [diff] [blame] | 2937 | const gfx::Size old_size = GetPreferredSize(); |
[email protected] | bcd281560 | 2012-01-14 18:17:23 | [diff] [blame] | 2938 | preferred_size_ = pref_size; |
[email protected] | 222f582 | 2014-02-05 23:40:49 | [diff] [blame] | 2939 | OnPreferredSizeChanged(old_size); |
[email protected] | 0548c535 | 2011-09-07 00:33:33 | [diff] [blame] | 2940 | } |
| 2941 | |
avi | c3aa842 | 2015-11-09 20:57:22 | [diff] [blame] | 2942 | void WebContentsImpl::ResizeDueToAutoResize( |
| 2943 | RenderWidgetHostImpl* render_widget_host, |
Fady Samuel | d10aadd8 | 2017-11-03 18:23:57 | [diff] [blame] | 2944 | const gfx::Size& new_size, |
Chris Blume | 760b946 | 2018-04-12 21:45:33 | [diff] [blame] | 2945 | const viz::LocalSurfaceId& local_surface_id) { |
avi | c3aa842 | 2015-11-09 20:57:22 | [diff] [blame] | 2946 | if (render_widget_host != GetRenderViewHost()->GetWidget()) |
| 2947 | return; |
| 2948 | |
kenrb | e4f9108 | 2017-06-02 20:32:08 | [diff] [blame] | 2949 | auto_resize_size_ = new_size; |
| 2950 | |
| 2951 | // Out-of-process iframe visible viewport sizes usually come from the |
| 2952 | // top-level RenderWidgetHostView, but when auto-resize is enabled on the |
| 2953 | // top frame then that size is used instead. |
| 2954 | for (FrameTreeNode* node : frame_tree_.Nodes()) { |
| 2955 | if (node->current_frame_host()->is_local_root()) { |
| 2956 | RenderWidgetHostImpl* host = |
| 2957 | node->current_frame_host()->GetRenderWidgetHost(); |
| 2958 | if (host != render_widget_host) |
Fady Samuel | 0b91182 | 2018-04-25 13:22:16 | [diff] [blame] | 2959 | host->SynchronizeVisualProperties(); |
kenrb | e4f9108 | 2017-06-02 20:32:08 | [diff] [blame] | 2960 | } |
| 2961 | } |
| 2962 | |
[email protected] | 61e2b3cc | 2012-03-02 16:13:34 | [diff] [blame] | 2963 | if (delegate_) |
| 2964 | delegate_->ResizeDueToAutoResize(this, new_size); |
| 2965 | } |
| 2966 | |
kenrb | e4f9108 | 2017-06-02 20:32:08 | [diff] [blame] | 2967 | gfx::Size WebContentsImpl::GetAutoResizeSize() { |
| 2968 | return auto_resize_size_; |
| 2969 | } |
| 2970 | |
| 2971 | void WebContentsImpl::ResetAutoResizeSize() { |
| 2972 | auto_resize_size_ = gfx::Size(); |
| 2973 | } |
| 2974 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 2975 | WebContents* WebContentsImpl::OpenURL(const OpenURLParams& params) { |
[email protected] | e5d549d | 2011-12-28 01:29:20 | [diff] [blame] | 2976 | if (!delegate_) |
Ivan Kotenkov | 2c0d2bb3 | 2017-11-01 15:41:28 | [diff] [blame] | 2977 | return nullptr; |
[email protected] | 00c37fc | 2011-08-02 00:22:50 | [diff] [blame] | 2978 | |
[email protected] | e5d549d | 2011-12-28 01:29:20 | [diff] [blame] | 2979 | WebContents* new_contents = delegate_->OpenURLFromTab(this, params); |
pnoland | 48894465 | 2017-02-22 18:58:54 | [diff] [blame] | 2980 | |
| 2981 | RenderFrameHost* source_render_frame_host = RenderFrameHost::FromID( |
| 2982 | params.source_render_process_id, params.source_render_frame_id); |
| 2983 | |
| 2984 | if (source_render_frame_host && params.source_site_instance) { |
| 2985 | CHECK_EQ(source_render_frame_host->GetSiteInstance(), |
| 2986 | params.source_site_instance.get()); |
| 2987 | } |
| 2988 | |
| 2989 | if (new_contents && source_render_frame_host && new_contents != this) { |
| 2990 | for (auto& observer : observers_) { |
| 2991 | observer.DidOpenRequestedURL(new_contents, source_render_frame_host, |
| 2992 | params.url, params.referrer, |
| 2993 | params.disposition, params.transition, |
pnoland | aae574e | 2017-03-06 21:04:21 | [diff] [blame] | 2994 | params.started_from_context_menu, false); |
pnoland | 48894465 | 2017-02-22 18:58:54 | [diff] [blame] | 2995 | } |
| 2996 | } |
| 2997 | |
[email protected] | e5d549d | 2011-12-28 01:29:20 | [diff] [blame] | 2998 | return new_contents; |
[email protected] | d5f942ba | 2008-09-26 19:30:34 | [diff] [blame] | 2999 | } |
| 3000 | |
[email protected] | a86c0e96 | 2013-12-17 17:10:39 | [diff] [blame] | 3001 | void WebContentsImpl::RenderFrameForInterstitialPageCreated( |
| 3002 | RenderFrameHost* render_frame_host) { |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 3003 | for (auto& observer : observers_) |
| 3004 | observer.RenderFrameForInterstitialPageCreated(render_frame_host); |
[email protected] | ba45bfd | 2012-05-22 21:51:44 | [diff] [blame] | 3005 | } |
| 3006 | |
[email protected] | 20ca038 | 2013-02-28 19:50:07 | [diff] [blame] | 3007 | void WebContentsImpl::AttachInterstitialPage( |
| 3008 | InterstitialPageImpl* interstitial_page) { |
creis | adca986 | 2017-06-16 19:12:11 | [diff] [blame] | 3009 | DCHECK(!interstitial_page_ && interstitial_page); |
| 3010 | interstitial_page_ = interstitial_page; |
[email protected] | 90fb08ed | 2013-09-24 17:43:29 | [diff] [blame] | 3011 | |
| 3012 | // Cancel any visible dialogs so that they don't interfere with the |
| 3013 | // interstitial. |
creis | 89a0f78 | 2015-05-27 16:13:17 | [diff] [blame] | 3014 | CancelActiveAndPendingDialogs(); |
[email protected] | 90fb08ed | 2013-09-24 17:43:29 | [diff] [blame] | 3015 | |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 3016 | for (auto& observer : observers_) |
| 3017 | observer.DidAttachInterstitialPage(); |
clamy | 44e84ce | 2016-02-22 15:38:25 | [diff] [blame] | 3018 | |
| 3019 | // Stop the throbber if needed while the interstitial page is shown. |
| 3020 | if (frame_tree_.IsLoading()) |
| 3021 | LoadingStateChanged(true, true, nullptr); |
lfg | 1453e41 | 2017-04-11 00:48:50 | [diff] [blame] | 3022 | |
| 3023 | // Connect to outer WebContents if necessary. |
| 3024 | if (node_.OuterContentsFrameTreeNode()) { |
| 3025 | if (GetRenderManager()->GetProxyToOuterDelegate()) { |
| 3026 | DCHECK( |
| 3027 | static_cast<RenderWidgetHostViewBase*>(interstitial_page->GetView()) |
| 3028 | ->IsRenderWidgetHostViewChildFrame()); |
| 3029 | RenderWidgetHostViewChildFrame* view = |
| 3030 | static_cast<RenderWidgetHostViewChildFrame*>( |
| 3031 | interstitial_page->GetView()); |
| 3032 | GetRenderManager()->SetRWHViewForInnerContents(view); |
| 3033 | } |
| 3034 | } |
Bo Liu | 7c6779e9 | 2017-08-16 02:02:28 | [diff] [blame] | 3035 | |
Bo Liu | 168c864 | 2017-08-28 18:26:02 | [diff] [blame] | 3036 | #if defined(OS_ANDROID) |
Bo Liu | 7c6779e9 | 2017-08-16 02:02:28 | [diff] [blame] | 3037 | // Update importance of the interstitial. |
| 3038 | static_cast<RenderFrameHostImpl*>(interstitial_page_->GetMainFrame()) |
| 3039 | ->GetRenderWidgetHost() |
| 3040 | ->SetImportance(GetMainFrame()->GetRenderWidgetHost()->importance()); |
Bo Liu | 168c864 | 2017-08-28 18:26:02 | [diff] [blame] | 3041 | #endif |
Dominic Mazzoni | efb5f9e3 | 2017-12-21 01:08:22 | [diff] [blame] | 3042 | |
| 3043 | if (accessibility_mode_.has_mode(ui::AXMode::kNativeAPIs)) { |
| 3044 | // Make sure that the main page's accessibility tree is hidden and the |
| 3045 | // interstitial gets focus. |
| 3046 | RenderFrameHostImpl* rfh = |
| 3047 | static_cast<RenderFrameHostImpl*>(GetMainFrame()); |
| 3048 | if (rfh) { |
| 3049 | BrowserAccessibilityManager* accessibility_manager = |
| 3050 | rfh->browser_accessibility_manager(); |
| 3051 | if (accessibility_manager) |
| 3052 | accessibility_manager->set_hidden_by_interstitial_page(true); |
| 3053 | } |
| 3054 | rfh = static_cast<RenderFrameHostImpl*>( |
| 3055 | GetInterstitialPage()->GetMainFrame()); |
| 3056 | if (rfh) { |
| 3057 | BrowserAccessibilityManager* accessibility_manager = |
| 3058 | rfh->GetOrCreateBrowserAccessibilityManager(); |
| 3059 | if (accessibility_manager) |
| 3060 | accessibility_manager->OnWindowFocused(); |
| 3061 | } |
| 3062 | } |
clamy | 44e84ce | 2016-02-22 15:38:25 | [diff] [blame] | 3063 | } |
| 3064 | |
| 3065 | void WebContentsImpl::DidProceedOnInterstitial() { |
| 3066 | // The interstitial page should no longer be pausing the throbber. |
creis | adca986 | 2017-06-16 19:12:11 | [diff] [blame] | 3067 | DCHECK(!(ShowingInterstitialPage() && interstitial_page_->pause_throbber())); |
clamy | 44e84ce | 2016-02-22 15:38:25 | [diff] [blame] | 3068 | |
| 3069 | // Restart the throbber now that the interstitial page no longer pauses it. |
| 3070 | if (ShowingInterstitialPage() && frame_tree_.IsLoading()) |
| 3071 | LoadingStateChanged(true, true, nullptr); |
[email protected] | 20ca038 | 2013-02-28 19:50:07 | [diff] [blame] | 3072 | } |
| 3073 | |
Lucas Furukawa Gadani | 7f1241d | 2017-07-12 01:45:04 | [diff] [blame] | 3074 | void WebContentsImpl::DetachInterstitialPage(bool has_focus) { |
Lucas Furukawa Gadani | 69b60919 | 2017-07-10 17:08:34 | [diff] [blame] | 3075 | bool interstitial_pausing_throbber = |
| 3076 | ShowingInterstitialPage() && interstitial_page_->pause_throbber(); |
| 3077 | if (ShowingInterstitialPage()) |
| 3078 | interstitial_page_ = nullptr; |
Lucas Furukawa Gadani | 7f1241d | 2017-07-12 01:45:04 | [diff] [blame] | 3079 | |
Dominic Mazzoni | efb5f9e3 | 2017-12-21 01:08:22 | [diff] [blame] | 3080 | // Make sure that the main page's accessibility tree is no longer |
| 3081 | // suppressed. |
| 3082 | RenderFrameHostImpl* rfh = GetMainFrame(); |
| 3083 | if (rfh) { |
| 3084 | BrowserAccessibilityManager* accessibility_manager = |
| 3085 | rfh->browser_accessibility_manager(); |
| 3086 | if (accessibility_manager) |
| 3087 | accessibility_manager->set_hidden_by_interstitial_page(false); |
| 3088 | } |
| 3089 | |
Lucas Furukawa Gadani | 7f1241d | 2017-07-12 01:45:04 | [diff] [blame] | 3090 | // If the focus was on the interstitial, let's keep it to the page. |
| 3091 | // (Note that in unit-tests the RVH may not have a view). |
| 3092 | if (has_focus && GetRenderViewHost()->GetWidget()->GetView()) |
| 3093 | GetRenderViewHost()->GetWidget()->GetView()->Focus(); |
| 3094 | |
Lucas Furukawa Gadani | 69b60919 | 2017-07-10 17:08:34 | [diff] [blame] | 3095 | for (auto& observer : observers_) |
| 3096 | observer.DidDetachInterstitialPage(); |
| 3097 | |
| 3098 | // Disconnect from outer WebContents if necessary. This must happen after the |
| 3099 | // interstitial page is cleared above, since the call to |
| 3100 | // SetRWHViewForInnerContents below may loop over all the |
| 3101 | // RenderWidgetHostViews in the tree (otherwise, including the now-deleted |
| 3102 | // view for the interstitial). |
lfg | 1453e41 | 2017-04-11 00:48:50 | [diff] [blame] | 3103 | if (node_.OuterContentsFrameTreeNode()) { |
| 3104 | if (GetRenderManager()->GetProxyToOuterDelegate()) { |
| 3105 | DCHECK(static_cast<RenderWidgetHostViewBase*>( |
| 3106 | GetRenderManager()->current_frame_host()->GetView()) |
| 3107 | ->IsRenderWidgetHostViewChildFrame()); |
| 3108 | RenderWidgetHostViewChildFrame* view = |
| 3109 | static_cast<RenderWidgetHostViewChildFrame*>( |
| 3110 | GetRenderManager()->current_frame_host()->GetView()); |
| 3111 | GetRenderManager()->SetRWHViewForInnerContents(view); |
| 3112 | } |
| 3113 | } |
| 3114 | |
clamy | 44e84ce | 2016-02-22 15:38:25 | [diff] [blame] | 3115 | // Restart the throbber if needed now that the interstitial page is going |
| 3116 | // away. |
| 3117 | if (interstitial_pausing_throbber && frame_tree_.IsLoading()) |
| 3118 | LoadingStateChanged(true, true, nullptr); |
[email protected] | 20ca038 | 2013-02-28 19:50:07 | [diff] [blame] | 3119 | } |
| 3120 | |
avi | 2b17759 | 2014-12-10 02:08:02 | [diff] [blame] | 3121 | void WebContentsImpl::SetHistoryOffsetAndLength(int history_offset, |
| 3122 | int history_length) { |
alexmos | 136fd6e6 | 2016-08-15 20:58:41 | [diff] [blame] | 3123 | SendPageMessage(new PageMsg_SetHistoryOffsetAndLength( |
| 3124 | MSG_ROUTING_NONE, history_offset, history_length)); |
avi | 2b17759 | 2014-12-10 02:08:02 | [diff] [blame] | 3125 | } |
| 3126 | |
| 3127 | void WebContentsImpl::SetHistoryOffsetAndLengthForView( |
| 3128 | RenderViewHost* render_view_host, |
| 3129 | int history_offset, |
| 3130 | int history_length) { |
alexmos | 136fd6e6 | 2016-08-15 20:58:41 | [diff] [blame] | 3131 | render_view_host->Send(new PageMsg_SetHistoryOffsetAndLength( |
avi | 2b17759 | 2014-12-10 02:08:02 | [diff] [blame] | 3132 | render_view_host->GetRoutingID(), history_offset, history_length)); |
[email protected] | 796931a9 | 2011-08-10 01:32:14 | [diff] [blame] | 3133 | } |
| 3134 | |
toyoshim | 24a4c7ab | 2016-04-05 09:24:14 | [diff] [blame] | 3135 | void WebContentsImpl::ReloadFocusedFrame(bool bypass_cache) { |
[email protected] | 1f3fc1d | 2014-04-03 14:50:17 | [diff] [blame] | 3136 | RenderFrameHost* focused_frame = GetFocusedFrame(); |
| 3137 | if (!focused_frame) |
| 3138 | return; |
| 3139 | |
[email protected] | 959be4c | 2014-04-08 15:01:33 | [diff] [blame] | 3140 | focused_frame->Send(new FrameMsg_Reload( |
toyoshim | 24a4c7ab | 2016-04-05 09:24:14 | [diff] [blame] | 3141 | focused_frame->GetRoutingID(), bypass_cache)); |
[email protected] | 959be4c | 2014-04-08 15:01:33 | [diff] [blame] | 3142 | } |
| 3143 | |
megjablon | 3f594107 | 2016-02-04 23:27:52 | [diff] [blame] | 3144 | void WebContentsImpl::ReloadLoFiImages() { |
| 3145 | SendToAllFrames(new FrameMsg_ReloadLoFiImages(MSG_ROUTING_NONE)); |
| 3146 | } |
| 3147 | |
[email protected] | 959be4c | 2014-04-08 15:01:33 | [diff] [blame] | 3148 | void WebContentsImpl::Undo() { |
Dave Tapuska | b336b92 | 2017-07-06 19:24:05 | [diff] [blame] | 3149 | RenderFrameHostImpl* focused_frame = GetFocusedFrame(); |
[email protected] | 959be4c | 2014-04-08 15:01:33 | [diff] [blame] | 3150 | if (!focused_frame) |
| 3151 | return; |
| 3152 | |
dtapuska | 9d46ef7d | 2017-05-26 19:06:06 | [diff] [blame] | 3153 | focused_frame->GetFrameInputHandler()->Undo(); |
[email protected] | 959be4c | 2014-04-08 15:01:33 | [diff] [blame] | 3154 | RecordAction(base::UserMetricsAction("Undo")); |
| 3155 | } |
| 3156 | |
| 3157 | void WebContentsImpl::Redo() { |
Dave Tapuska | b336b92 | 2017-07-06 19:24:05 | [diff] [blame] | 3158 | RenderFrameHostImpl* focused_frame = GetFocusedFrame(); |
[email protected] | 959be4c | 2014-04-08 15:01:33 | [diff] [blame] | 3159 | if (!focused_frame) |
| 3160 | return; |
dtapuska | 9d46ef7d | 2017-05-26 19:06:06 | [diff] [blame] | 3161 | focused_frame->GetFrameInputHandler()->Redo(); |
[email protected] | 959be4c | 2014-04-08 15:01:33 | [diff] [blame] | 3162 | RecordAction(base::UserMetricsAction("Redo")); |
| 3163 | } |
| 3164 | |
| 3165 | void WebContentsImpl::Cut() { |
Dave Tapuska | b336b92 | 2017-07-06 19:24:05 | [diff] [blame] | 3166 | RenderFrameHostImpl* focused_frame = GetFocusedFrame(); |
[email protected] | 959be4c | 2014-04-08 15:01:33 | [diff] [blame] | 3167 | if (!focused_frame) |
| 3168 | return; |
| 3169 | |
dtapuska | 9d46ef7d | 2017-05-26 19:06:06 | [diff] [blame] | 3170 | focused_frame->GetFrameInputHandler()->Cut(); |
[email protected] | 959be4c | 2014-04-08 15:01:33 | [diff] [blame] | 3171 | RecordAction(base::UserMetricsAction("Cut")); |
| 3172 | } |
| 3173 | |
| 3174 | void WebContentsImpl::Copy() { |
Dave Tapuska | b336b92 | 2017-07-06 19:24:05 | [diff] [blame] | 3175 | RenderFrameHostImpl* focused_frame = GetFocusedFrame(); |
[email protected] | 959be4c | 2014-04-08 15:01:33 | [diff] [blame] | 3176 | if (!focused_frame) |
| 3177 | return; |
| 3178 | |
dtapuska | 9d46ef7d | 2017-05-26 19:06:06 | [diff] [blame] | 3179 | focused_frame->GetFrameInputHandler()->Copy(); |
[email protected] | 959be4c | 2014-04-08 15:01:33 | [diff] [blame] | 3180 | RecordAction(base::UserMetricsAction("Copy")); |
| 3181 | } |
| 3182 | |
| 3183 | void WebContentsImpl::CopyToFindPboard() { |
| 3184 | #if defined(OS_MACOSX) |
Dave Tapuska | b336b92 | 2017-07-06 19:24:05 | [diff] [blame] | 3185 | RenderFrameHostImpl* focused_frame = GetFocusedFrame(); |
[email protected] | 959be4c | 2014-04-08 15:01:33 | [diff] [blame] | 3186 | if (!focused_frame) |
| 3187 | return; |
| 3188 | |
| 3189 | // Windows/Linux don't have the concept of a find pasteboard. |
dtapuska | 9d46ef7d | 2017-05-26 19:06:06 | [diff] [blame] | 3190 | focused_frame->GetFrameInputHandler()->CopyToFindPboard(); |
[email protected] | 959be4c | 2014-04-08 15:01:33 | [diff] [blame] | 3191 | RecordAction(base::UserMetricsAction("CopyToFindPboard")); |
| 3192 | #endif |
| 3193 | } |
| 3194 | |
| 3195 | void WebContentsImpl::Paste() { |
Dave Tapuska | b336b92 | 2017-07-06 19:24:05 | [diff] [blame] | 3196 | RenderFrameHostImpl* focused_frame = GetFocusedFrame(); |
[email protected] | 959be4c | 2014-04-08 15:01:33 | [diff] [blame] | 3197 | if (!focused_frame) |
| 3198 | return; |
| 3199 | |
dtapuska | 9d46ef7d | 2017-05-26 19:06:06 | [diff] [blame] | 3200 | focused_frame->GetFrameInputHandler()->Paste(); |
[email protected] | 959be4c | 2014-04-08 15:01:33 | [diff] [blame] | 3201 | RecordAction(base::UserMetricsAction("Paste")); |
| 3202 | } |
| 3203 | |
| 3204 | void WebContentsImpl::PasteAndMatchStyle() { |
Dave Tapuska | b336b92 | 2017-07-06 19:24:05 | [diff] [blame] | 3205 | RenderFrameHostImpl* focused_frame = GetFocusedFrame(); |
[email protected] | 959be4c | 2014-04-08 15:01:33 | [diff] [blame] | 3206 | if (!focused_frame) |
| 3207 | return; |
| 3208 | |
dtapuska | 9d46ef7d | 2017-05-26 19:06:06 | [diff] [blame] | 3209 | focused_frame->GetFrameInputHandler()->PasteAndMatchStyle(); |
[email protected] | 959be4c | 2014-04-08 15:01:33 | [diff] [blame] | 3210 | RecordAction(base::UserMetricsAction("PasteAndMatchStyle")); |
| 3211 | } |
| 3212 | |
| 3213 | void WebContentsImpl::Delete() { |
Dave Tapuska | b336b92 | 2017-07-06 19:24:05 | [diff] [blame] | 3214 | RenderFrameHostImpl* focused_frame = GetFocusedFrame(); |
[email protected] | 959be4c | 2014-04-08 15:01:33 | [diff] [blame] | 3215 | if (!focused_frame) |
| 3216 | return; |
| 3217 | |
dtapuska | 9d46ef7d | 2017-05-26 19:06:06 | [diff] [blame] | 3218 | focused_frame->GetFrameInputHandler()->Delete(); |
[email protected] | 959be4c | 2014-04-08 15:01:33 | [diff] [blame] | 3219 | RecordAction(base::UserMetricsAction("DeleteSelection")); |
| 3220 | } |
| 3221 | |
| 3222 | void WebContentsImpl::SelectAll() { |
Dave Tapuska | b336b92 | 2017-07-06 19:24:05 | [diff] [blame] | 3223 | RenderFrameHostImpl* focused_frame = GetFocusedFrame(); |
[email protected] | 959be4c | 2014-04-08 15:01:33 | [diff] [blame] | 3224 | if (!focused_frame) |
| 3225 | return; |
| 3226 | |
dtapuska | 9d46ef7d | 2017-05-26 19:06:06 | [diff] [blame] | 3227 | focused_frame->GetFrameInputHandler()->SelectAll(); |
[email protected] | 959be4c | 2014-04-08 15:01:33 | [diff] [blame] | 3228 | RecordAction(base::UserMetricsAction("SelectAll")); |
| 3229 | } |
| 3230 | |
yabinh | 351e7ec | 2017-03-10 02:43:24 | [diff] [blame] | 3231 | void WebContentsImpl::CollapseSelection() { |
Dave Tapuska | b336b92 | 2017-07-06 19:24:05 | [diff] [blame] | 3232 | RenderFrameHostImpl* focused_frame = GetFocusedFrame(); |
[email protected] | 959be4c | 2014-04-08 15:01:33 | [diff] [blame] | 3233 | if (!focused_frame) |
| 3234 | return; |
| 3235 | |
dtapuska | 9d46ef7d | 2017-05-26 19:06:06 | [diff] [blame] | 3236 | focused_frame->GetFrameInputHandler()->CollapseSelection(); |
[email protected] | 1f3fc1d | 2014-04-03 14:50:17 | [diff] [blame] | 3237 | } |
| 3238 | |
| 3239 | void WebContentsImpl::Replace(const base::string16& word) { |
Dave Tapuska | b336b92 | 2017-07-06 19:24:05 | [diff] [blame] | 3240 | RenderFrameHostImpl* focused_frame = GetFocusedFrame(); |
[email protected] | 1f3fc1d | 2014-04-03 14:50:17 | [diff] [blame] | 3241 | if (!focused_frame) |
| 3242 | return; |
| 3243 | |
dtapuska | 9d46ef7d | 2017-05-26 19:06:06 | [diff] [blame] | 3244 | focused_frame->GetFrameInputHandler()->Replace(word); |
[email protected] | 1f3fc1d | 2014-04-03 14:50:17 | [diff] [blame] | 3245 | } |
| 3246 | |
| 3247 | void WebContentsImpl::ReplaceMisspelling(const base::string16& word) { |
Dave Tapuska | b336b92 | 2017-07-06 19:24:05 | [diff] [blame] | 3248 | RenderFrameHostImpl* focused_frame = GetFocusedFrame(); |
[email protected] | 1f3fc1d | 2014-04-03 14:50:17 | [diff] [blame] | 3249 | if (!focused_frame) |
| 3250 | return; |
| 3251 | |
dtapuska | 9d46ef7d | 2017-05-26 19:06:06 | [diff] [blame] | 3252 | focused_frame->GetFrameInputHandler()->ReplaceMisspelling(word); |
[email protected] | 959be4c | 2014-04-08 15:01:33 | [diff] [blame] | 3253 | } |
| 3254 | |
| 3255 | void WebContentsImpl::NotifyContextMenuClosed( |
| 3256 | const CustomContextMenuContext& context) { |
| 3257 | RenderFrameHost* focused_frame = GetFocusedFrame(); |
| 3258 | if (!focused_frame) |
| 3259 | return; |
| 3260 | |
| 3261 | focused_frame->Send(new FrameMsg_ContextMenuClosed( |
| 3262 | focused_frame->GetRoutingID(), context)); |
| 3263 | } |
| 3264 | |
| 3265 | void WebContentsImpl::ExecuteCustomContextMenuCommand( |
| 3266 | int action, const CustomContextMenuContext& context) { |
| 3267 | RenderFrameHost* focused_frame = GetFocusedFrame(); |
| 3268 | if (!focused_frame) |
| 3269 | return; |
| 3270 | |
| 3271 | focused_frame->Send(new FrameMsg_CustomContextMenuAction( |
| 3272 | focused_frame->GetRoutingID(), context, action)); |
[email protected] | 4fed370 | 2014-04-01 09:08:00 | [diff] [blame] | 3273 | } |
| 3274 | |
[email protected] | fc2b46b | 2014-05-03 16:33:45 | [diff] [blame] | 3275 | gfx::NativeView WebContentsImpl::GetNativeView() { |
| 3276 | return view_->GetNativeView(); |
| 3277 | } |
| 3278 | |
| 3279 | gfx::NativeView WebContentsImpl::GetContentNativeView() { |
| 3280 | return view_->GetContentNativeView(); |
| 3281 | } |
| 3282 | |
| 3283 | gfx::NativeWindow WebContentsImpl::GetTopLevelNativeWindow() { |
| 3284 | return view_->GetTopLevelNativeWindow(); |
| 3285 | } |
| 3286 | |
| 3287 | gfx::Rect WebContentsImpl::GetViewBounds() { |
| 3288 | return view_->GetViewBounds(); |
| 3289 | } |
| 3290 | |
| 3291 | gfx::Rect WebContentsImpl::GetContainerBounds() { |
| 3292 | gfx::Rect rv; |
| 3293 | view_->GetContainerBounds(&rv); |
| 3294 | return rv; |
| 3295 | } |
| 3296 | |
| 3297 | DropData* WebContentsImpl::GetDropData() { |
| 3298 | return view_->GetDropData(); |
| 3299 | } |
| 3300 | |
| 3301 | void WebContentsImpl::Focus() { |
miu | 9e14e49 | 2014-10-25 02:39:04 | [diff] [blame] | 3302 | view_->Focus(); |
[email protected] | fc2b46b | 2014-05-03 16:33:45 | [diff] [blame] | 3303 | } |
| 3304 | |
| 3305 | void WebContentsImpl::SetInitialFocus() { |
miu | 9e14e49 | 2014-10-25 02:39:04 | [diff] [blame] | 3306 | view_->SetInitialFocus(); |
[email protected] | fc2b46b | 2014-05-03 16:33:45 | [diff] [blame] | 3307 | } |
| 3308 | |
| 3309 | void WebContentsImpl::StoreFocus() { |
miu | 9e14e49 | 2014-10-25 02:39:04 | [diff] [blame] | 3310 | view_->StoreFocus(); |
[email protected] | fc2b46b | 2014-05-03 16:33:45 | [diff] [blame] | 3311 | } |
| 3312 | |
| 3313 | void WebContentsImpl::RestoreFocus() { |
miu | 9e14e49 | 2014-10-25 02:39:04 | [diff] [blame] | 3314 | view_->RestoreFocus(); |
[email protected] | fc2b46b | 2014-05-03 16:33:45 | [diff] [blame] | 3315 | } |
| 3316 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 3317 | void WebContentsImpl::FocusThroughTabTraversal(bool reverse) { |
Maxim Podgorodskiy | a926c4ff | 2017-11-20 02:06:39 | [diff] [blame] | 3318 | view_->FocusThroughTabTraversal(reverse); |
[email protected] | 96d185d | 2009-04-24 03:28:54 | [diff] [blame] | 3319 | } |
| 3320 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 3321 | bool WebContentsImpl::ShowingInterstitialPage() const { |
creis | adca986 | 2017-06-16 19:12:11 | [diff] [blame] | 3322 | return interstitial_page_ != nullptr; |
[email protected] | 96d185d | 2009-04-24 03:28:54 | [diff] [blame] | 3323 | } |
| 3324 | |
Pete Williamson | 89aa140 | 2017-07-07 19:58:41 | [diff] [blame] | 3325 | void WebContentsImpl::AdjustPreviewsStateForNavigation( |
| 3326 | PreviewsState* previews_state) { |
| 3327 | if (delegate_) |
Doug Arnett | c681bbe | 2018-04-06 04:04:46 | [diff] [blame] | 3328 | delegate_->AdjustPreviewsStateForNavigation(this, previews_state); |
Pete Williamson | 89aa140 | 2017-07-07 19:58:41 | [diff] [blame] | 3329 | } |
| 3330 | |
Maxim Podgorodskiy | a926c4ff | 2017-11-20 02:06:39 | [diff] [blame] | 3331 | InterstitialPageImpl* WebContentsImpl::GetInterstitialPage() const { |
creis | adca986 | 2017-06-16 19:12:11 | [diff] [blame] | 3332 | return interstitial_page_; |
[email protected] | 68649314 | 2011-07-15 21:47:22 | [diff] [blame] | 3333 | } |
| 3334 | |
Gyuyoung Kim | 80143f5e | 2018-04-02 02:40:25 | [diff] [blame] | 3335 | void WebContentsImpl::PausePageScheduledTasks(bool paused) { |
| 3336 | SendPageMessage( |
| 3337 | new PageMsg_PausePageScheduledTasks(MSG_ROUTING_NONE, paused)); |
| 3338 | } |
| 3339 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 3340 | bool WebContentsImpl::IsSavable() { |
[email protected] | a53209b | 2012-01-20 16:48:16 | [diff] [blame] | 3341 | // WebKit creates Document object when MIME type is application/xhtml+xml, |
| 3342 | // so we also support this MIME type. |
| 3343 | return contents_mime_type_ == "text/html" || |
| 3344 | contents_mime_type_ == "text/xml" || |
| 3345 | contents_mime_type_ == "application/xhtml+xml" || |
| 3346 | contents_mime_type_ == "text/plain" || |
| 3347 | contents_mime_type_ == "text/css" || |
Kinuko Yasuda | 74702f9 | 2017-07-31 03:27:53 | [diff] [blame] | 3348 | blink::IsSupportedJavascriptMimeType(contents_mime_type_); |
[email protected] | a53209b | 2012-01-20 16:48:16 | [diff] [blame] | 3349 | } |
| 3350 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 3351 | void WebContentsImpl::OnSavePage() { |
[email protected] | c7dd2f6 | 2011-07-18 15:57:59 | [diff] [blame] | 3352 | // If we can not save the page, try to download it. |
[email protected] | a53209b | 2012-01-20 16:48:16 | [diff] [blame] | 3353 | if (!IsSavable()) { |
Min Qin | da0ed206 | 2018-02-23 22:00:53 | [diff] [blame] | 3354 | download::RecordSavePackageEvent( |
| 3355 | download::SAVE_PACKAGE_DOWNLOAD_ON_NON_HTML); |
nasko | 89ad774 | 2015-03-05 22:14:19 | [diff] [blame] | 3356 | SaveFrame(GetLastCommittedURL(), Referrer()); |
[email protected] | 27678b2a | 2012-02-04 22:09:14 | [diff] [blame] | 3357 | return; |
[email protected] | c7dd2f6 | 2011-07-18 15:57:59 | [diff] [blame] | 3358 | } |
| 3359 | |
| 3360 | Stop(); |
| 3361 | |
| 3362 | // Create the save package and possibly prompt the user for the name to save |
| 3363 | // the page as. The user prompt is an asynchronous operation that runs on |
| 3364 | // another thread. |
| 3365 | save_package_ = new SavePackage(this); |
| 3366 | save_package_->GetSaveInfo(); |
| 3367 | } |
| 3368 | |
| 3369 | // Used in automated testing to bypass prompting the user for file names. |
| 3370 | // Instead, the names and paths are hard coded rather than running them through |
| 3371 | // file name sanitation and extension / mime checking. |
[email protected] | 2dec8ec | 2013-02-07 19:20:34 | [diff] [blame] | 3372 | bool WebContentsImpl::SavePage(const base::FilePath& main_file, |
| 3373 | const base::FilePath& dir_path, |
[email protected] | 8ff00d7 | 2012-10-23 19:12:21 | [diff] [blame] | 3374 | SavePageType save_type) { |
[email protected] | c7dd2f6 | 2011-07-18 15:57:59 | [diff] [blame] | 3375 | // Stop the page from navigating. |
| 3376 | Stop(); |
| 3377 | |
| 3378 | save_package_ = new SavePackage(this, save_type, main_file, dir_path); |
[email protected] | 8ff00d7 | 2012-10-23 19:12:21 | [diff] [blame] | 3379 | return save_package_->Init(SavePackageDownloadCreatedCallback()); |
[email protected] | c7dd2f6 | 2011-07-18 15:57:59 | [diff] [blame] | 3380 | } |
| 3381 | |
[email protected] | 3c71576ce | 2013-07-23 02:00:01 | [diff] [blame] | 3382 | void WebContentsImpl::SaveFrame(const GURL& url, |
| 3383 | const Referrer& referrer) { |
Xing Liu | 10329bf | 2018-03-20 19:22:14 | [diff] [blame] | 3384 | SaveFrameWithHeaders(url, referrer, std::string(), base::string16()); |
kundaji | 6c7f969 | 2015-03-09 18:00:37 | [diff] [blame] | 3385 | } |
| 3386 | |
Xing Liu | 10329bf | 2018-03-20 19:22:14 | [diff] [blame] | 3387 | void WebContentsImpl::SaveFrameWithHeaders( |
| 3388 | const GURL& url, |
| 3389 | const Referrer& referrer, |
| 3390 | const std::string& headers, |
| 3391 | const base::string16& suggested_filename) { |
nasko | 89ad774 | 2015-03-05 22:14:19 | [diff] [blame] | 3392 | if (!GetLastCommittedURL().is_valid()) |
[email protected] | 3c71576ce | 2013-07-23 02:00:01 | [diff] [blame] | 3393 | return; |
sammc | 92af6155 | 2014-11-19 23:27:40 | [diff] [blame] | 3394 | if (delegate_ && delegate_->SaveFrame(url, referrer)) |
| 3395 | return; |
| 3396 | |
nasko | 89ad774 | 2015-03-05 22:14:19 | [diff] [blame] | 3397 | // TODO(nasko): This check for main frame is incorrect and should be fixed |
brettw | 760f744 | 2016-05-23 21:19:22 | [diff] [blame] | 3398 | // by explicitly passing in which frame this method should target. This would |
| 3399 | // indicate whether it's the main frame, and also tell us the frame pointer |
| 3400 | // to use for routing. |
nasko | 89ad774 | 2015-03-05 22:14:19 | [diff] [blame] | 3401 | bool is_main_frame = (url == GetLastCommittedURL()); |
brettw | 760f744 | 2016-05-23 21:19:22 | [diff] [blame] | 3402 | RenderFrameHost* frame_host = GetMainFrame(); |
[email protected] | 3c71576ce | 2013-07-23 02:00:01 | [diff] [blame] | 3403 | |
brettw | 760f744 | 2016-05-23 21:19:22 | [diff] [blame] | 3404 | StoragePartition* storage_partition = BrowserContext::GetStoragePartition( |
| 3405 | GetBrowserContext(), frame_host->GetSiteInstance()); |
avi | b734894 | 2015-12-25 20:57:10 | [diff] [blame] | 3406 | int64_t post_id = -1; |
[email protected] | 3c71576ce | 2013-07-23 02:00:01 | [diff] [blame] | 3407 | if (is_main_frame) { |
[email protected] | 6286a37 | 2013-10-09 04:03:27 | [diff] [blame] | 3408 | const NavigationEntry* entry = controller_.GetLastCommittedEntry(); |
[email protected] | 3c71576ce | 2013-07-23 02:00:01 | [diff] [blame] | 3409 | if (entry) |
| 3410 | post_id = entry->GetPostID(); |
| 3411 | } |
Ramin Halavati | 24e2101 | 2017-07-10 12:56:06 | [diff] [blame] | 3412 | net::NetworkTrafficAnnotationTag traffic_annotation = |
| 3413 | net::DefineNetworkTrafficAnnotation("download_web_contents_frame", R"( |
| 3414 | semantics { |
| 3415 | sender: "Save Page Action" |
| 3416 | description: |
| 3417 | "Saves the given frame's URL to the local file system." |
| 3418 | trigger: |
| 3419 | "The user has triggered a save operation on the frame through a " |
| 3420 | "context menu or other mechanism." |
| 3421 | data: "None." |
| 3422 | destination: WEBSITE |
| 3423 | } |
| 3424 | policy { |
Ramin Halavati | 3b97978 | 2017-07-21 11:40:26 | [diff] [blame] | 3425 | cookies_allowed: YES |
Ramin Halavati | 24e2101 | 2017-07-10 12:56:06 | [diff] [blame] | 3426 | cookies_store: "user" |
| 3427 | setting: |
| 3428 | "This feature cannot be disabled by settings, but it's is only " |
| 3429 | "triggered by user request." |
| 3430 | policy_exception_justification: "Not implemented." |
| 3431 | })"); |
Min Qin | a904f330 | 2018-02-13 23:33:34 | [diff] [blame] | 3432 | auto params = std::make_unique<download::DownloadUrlParameters>( |
brettw | 760f744 | 2016-05-23 21:19:22 | [diff] [blame] | 3433 | url, frame_host->GetProcess()->GetID(), |
| 3434 | frame_host->GetRenderViewHost()->GetRoutingID(), |
Ramin Halavati | 03efa73 | 2017-06-12 09:28:20 | [diff] [blame] | 3435 | frame_host->GetRoutingID(), storage_partition->GetURLRequestContext(), |
Ramin Halavati | 24e2101 | 2017-07-10 12:56:06 | [diff] [blame] | 3436 | traffic_annotation); |
Min Qin | a904f330 | 2018-02-13 23:33:34 | [diff] [blame] | 3437 | params->set_referrer(referrer.url); |
| 3438 | params->set_referrer_policy( |
| 3439 | Referrer::ReferrerPolicyForUrlRequest(referrer.policy)); |
[email protected] | 3c71576ce | 2013-07-23 02:00:01 | [diff] [blame] | 3440 | params->set_post_id(post_id); |
[email protected] | 3c71576ce | 2013-07-23 02:00:01 | [diff] [blame] | 3441 | if (post_id >= 0) |
| 3442 | params->set_method("POST"); |
| 3443 | params->set_prompt(true); |
kundaji | 6c7f969 | 2015-03-09 18:00:37 | [diff] [blame] | 3444 | |
| 3445 | if (headers.empty()) { |
| 3446 | params->set_prefer_cache(true); |
| 3447 | } else { |
Min Qin | a904f330 | 2018-02-13 23:33:34 | [diff] [blame] | 3448 | for (download::DownloadUrlParameters::RequestHeadersNameValuePair |
| 3449 | key_value : ParseDownloadHeaders(headers)) { |
Megan Jablonski | 2f6a4c5 | 2017-07-10 23:01:25 | [diff] [blame] | 3450 | params->add_request_header(key_value.first, key_value.second); |
kundaji | 6c7f969 | 2015-03-09 18:00:37 | [diff] [blame] | 3451 | } |
| 3452 | } |
Xing Liu | 10329bf | 2018-03-20 19:22:14 | [diff] [blame] | 3453 | params->set_suggested_name(suggested_filename); |
Min Qin | 0ca8e1ee | 2018-01-31 00:49:35 | [diff] [blame] | 3454 | params->set_download_source(download::DownloadSource::WEB_CONTENTS_API); |
thestig | 859c7889 | 2017-05-15 21:17:06 | [diff] [blame] | 3455 | BrowserContext::GetDownloadManager(GetBrowserContext()) |
Ramin Halavati | 03efa73 | 2017-06-12 09:28:20 | [diff] [blame] | 3456 | ->DownloadUrl(std::move(params)); |
[email protected] | 3c71576ce | 2013-07-23 02:00:01 | [diff] [blame] | 3457 | } |
| 3458 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 3459 | void WebContentsImpl::GenerateMHTML( |
dewittj | 6dc5747a | 2016-05-17 01:48:47 | [diff] [blame] | 3460 | const MHTMLGenerationParams& params, |
Avi Drissman | 149b783 | 2018-03-23 14:31:49 | [diff] [blame] | 3461 | base::OnceCallback<void(int64_t)> callback) { |
| 3462 | MHTMLGenerationManager::GetInstance()->SaveMHTML(this, params, |
| 3463 | std::move(callback)); |
[email protected] | aa4f397 | 2012-03-01 18:12:12 | [diff] [blame] | 3464 | } |
| 3465 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 3466 | const std::string& WebContentsImpl::GetContentsMimeType() const { |
[email protected] | 0bfbf88 | 2011-12-22 18:19:27 | [diff] [blame] | 3467 | return contents_mime_type_; |
| 3468 | } |
| 3469 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 3470 | bool WebContentsImpl::WillNotifyDisconnection() const { |
[email protected] | 0bfbf88 | 2011-12-22 18:19:27 | [diff] [blame] | 3471 | return notify_disconnection_; |
| 3472 | } |
| 3473 | |
[email protected] | 8ff00d7 | 2012-10-23 19:12:21 | [diff] [blame] | 3474 | RendererPreferences* WebContentsImpl::GetMutableRendererPrefs() { |
[email protected] | 0bfbf88 | 2011-12-22 18:19:27 | [diff] [blame] | 3475 | return &renderer_preferences_; |
| 3476 | } |
| 3477 | |
[email protected] | e35ccd5 | 2012-05-23 16:22:47 | [diff] [blame] | 3478 | void WebContentsImpl::Close() { |
| 3479 | Close(GetRenderViewHost()); |
| 3480 | } |
| 3481 | |
Ella Ge | 80a52dce | 2017-11-15 18:01:52 | [diff] [blame] | 3482 | void WebContentsImpl::DragSourceEndedAt(float client_x, |
| 3483 | float client_y, |
| 3484 | float screen_x, |
| 3485 | float screen_y, |
Paul Meyer | 0c58c371 | 2016-11-17 22:59:51 | [diff] [blame] | 3486 | blink::WebDragOperation operation, |
| 3487 | RenderWidgetHost* source_rwh) { |
[email protected] | cf200a56 | 2013-05-03 16:24:29 | [diff] [blame] | 3488 | if (browser_plugin_embedder_.get()) |
paulmeyer | 8fc8ea9 | 2016-11-15 05:12:21 | [diff] [blame] | 3489 | browser_plugin_embedder_->DragSourceEndedAt( |
| 3490 | client_x, client_y, screen_x, screen_y, operation); |
Paul Meyer | 0c58c371 | 2016-11-17 22:59:51 | [diff] [blame] | 3491 | if (source_rwh) { |
Ella Ge | 80a52dce | 2017-11-15 18:01:52 | [diff] [blame] | 3492 | source_rwh->DragSourceEndedAt(gfx::PointF(client_x, client_y), |
| 3493 | gfx::PointF(screen_x, screen_y), operation); |
Paul Meyer | 0c58c371 | 2016-11-17 22:59:51 | [diff] [blame] | 3494 | } |
[email protected] | cf200a56 | 2013-05-03 16:24:29 | [diff] [blame] | 3495 | } |
| 3496 | |
jam | 73f89264 | 2016-09-11 06:04:06 | [diff] [blame] | 3497 | void WebContentsImpl::LoadStateChanged( |
Charles Harrison | 911fa06 | 2018-03-06 21:01:46 | [diff] [blame] | 3498 | const std::string& host, |
jam | 73f89264 | 2016-09-11 06:04:06 | [diff] [blame] | 3499 | const net::LoadStateWithParam& load_state, |
| 3500 | uint64_t upload_position, |
| 3501 | uint64_t upload_size) { |
Charles Harrison | 911fa06 | 2018-03-06 21:01:46 | [diff] [blame] | 3502 | base::string16 host16 = url_formatter::IDNToUnicode(host); |
Elly Fong-Jones | cad9c3d1 | 2018-01-31 17:26:10 | [diff] [blame] | 3503 | // Drop no-op updates. |
| 3504 | if (load_state_.state == load_state.state && |
| 3505 | load_state_.param == load_state.param && |
| 3506 | upload_position_ == upload_position && upload_size_ == upload_size && |
Charles Harrison | 911fa06 | 2018-03-06 21:01:46 | [diff] [blame] | 3507 | load_state_host_ == host16) { |
Elly Fong-Jones | cad9c3d1 | 2018-01-31 17:26:10 | [diff] [blame] | 3508 | return; |
| 3509 | } |
jam | 73f89264 | 2016-09-11 06:04:06 | [diff] [blame] | 3510 | load_state_ = load_state; |
| 3511 | upload_position_ = upload_position; |
| 3512 | upload_size_ = upload_size; |
Charles Harrison | 911fa06 | 2018-03-06 21:01:46 | [diff] [blame] | 3513 | load_state_host_ = host16; |
jam | 73f89264 | 2016-09-11 06:04:06 | [diff] [blame] | 3514 | if (load_state_.state == net::LOAD_STATE_READING_RESPONSE) |
| 3515 | SetNotWaitingForResponse(); |
| 3516 | if (IsLoading()) { |
| 3517 | NotifyNavigationStateChanged(static_cast<InvalidateTypes>( |
| 3518 | INVALIDATE_TYPE_LOAD | INVALIDATE_TYPE_TAB)); |
| 3519 | } |
| 3520 | } |
| 3521 | |
Francois Doray | e616115 | 2018-03-27 22:05:37 | [diff] [blame] | 3522 | void WebContentsImpl::SetVisibility(Visibility visibility) { |
| 3523 | const Visibility previous_visibility = visibility_; |
| 3524 | visibility_ = visibility; |
| 3525 | |
Francois Doray | fe4a177 | 2018-02-17 04:17:09 | [diff] [blame] | 3526 | // Notify observers if the visibility changed or if WasShown() is being called |
| 3527 | // for the first time. |
Francois Doray | fe4a177 | 2018-02-17 04:17:09 | [diff] [blame] | 3528 | if (visibility != previous_visibility || |
| 3529 | (visibility == Visibility::VISIBLE && !did_first_set_visible_)) { |
| 3530 | for (auto& observer : observers_) |
| 3531 | observer.OnVisibilityChanged(visibility); |
| 3532 | } |
| 3533 | } |
| 3534 | |
Michael Thiessen | 896405db | 2017-07-20 17:52:32 | [diff] [blame] | 3535 | void WebContentsImpl::NotifyWebContentsFocused( |
| 3536 | RenderWidgetHost* render_widget_host) { |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 3537 | for (auto& observer : observers_) |
Michael Thiessen | 896405db | 2017-07-20 17:52:32 | [diff] [blame] | 3538 | observer.OnWebContentsFocused(render_widget_host); |
calamity | 7fe55ce | 2015-04-10 03:59:37 | [diff] [blame] | 3539 | } |
| 3540 | |
Michael Thiessen | 896405db | 2017-07-20 17:52:32 | [diff] [blame] | 3541 | void WebContentsImpl::NotifyWebContentsLostFocus( |
| 3542 | RenderWidgetHost* render_widget_host) { |
zijiehe | 3bee08e2 | 2017-05-17 04:14:46 | [diff] [blame] | 3543 | for (auto& observer : observers_) |
Michael Thiessen | 896405db | 2017-07-20 17:52:32 | [diff] [blame] | 3544 | observer.OnWebContentsLostFocus(render_widget_host); |
zijiehe | 3bee08e2 | 2017-05-17 04:14:46 | [diff] [blame] | 3545 | } |
| 3546 | |
Paul Meyer | 0c58c371 | 2016-11-17 22:59:51 | [diff] [blame] | 3547 | void WebContentsImpl::SystemDragEnded(RenderWidgetHost* source_rwh) { |
| 3548 | if (source_rwh) |
| 3549 | source_rwh->DragSourceSystemDragEnded(); |
[email protected] | cf200a56 | 2013-05-03 16:24:29 | [diff] [blame] | 3550 | if (browser_plugin_embedder_.get()) |
| 3551 | browser_plugin_embedder_->SystemDragEnded(); |
[email protected] | 7813bd7 | 2011-02-05 02:19:34 | [diff] [blame] | 3552 | } |
| 3553 | |
Daniel Cheng | 90196c8 | 2018-04-25 21:49:14 | [diff] [blame] | 3554 | void WebContentsImpl::NavigatedByUser() { |
| 3555 | OnUserInteraction(blink::WebInputEvent::kUndefined); |
[email protected] | e35ccd5 | 2012-05-23 16:22:47 | [diff] [blame] | 3556 | } |
| 3557 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 3558 | void WebContentsImpl::SetClosedByUserGesture(bool value) { |
[email protected] | 0bfbf88 | 2011-12-22 18:19:27 | [diff] [blame] | 3559 | closed_by_user_gesture_ = value; |
| 3560 | } |
| 3561 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 3562 | bool WebContentsImpl::GetClosedByUserGesture() const { |
[email protected] | 0bfbf88 | 2011-12-22 18:19:27 | [diff] [blame] | 3563 | return closed_by_user_gesture_; |
| 3564 | } |
| 3565 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 3566 | int WebContentsImpl::GetMinimumZoomPercent() const { |
[email protected] | 0bfbf88 | 2011-12-22 18:19:27 | [diff] [blame] | 3567 | return minimum_zoom_percent_; |
| 3568 | } |
| 3569 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 3570 | int WebContentsImpl::GetMaximumZoomPercent() const { |
[email protected] | 0bfbf88 | 2011-12-22 18:19:27 | [diff] [blame] | 3571 | return maximum_zoom_percent_; |
| 3572 | } |
| 3573 | |
mcnee | 432e47d | 2015-11-09 19:37:46 | [diff] [blame] | 3574 | void WebContentsImpl::SetPageScale(float page_scale_factor) { |
Lukasz Anforowicz | f4357ca | 2017-09-07 01:43:32 | [diff] [blame] | 3575 | GetRenderViewHost()->Send(new ViewMsg_SetPageScale( |
| 3576 | GetRenderViewHost()->GetRoutingID(), page_scale_factor)); |
ccameron | b7c1d6c | 2015-03-09 17:08:24 | [diff] [blame] | 3577 | } |
| 3578 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 3579 | gfx::Size WebContentsImpl::GetPreferredSize() const { |
Francois Doray | 24fc62c | 2017-12-11 17:27:33 | [diff] [blame] | 3580 | return IsBeingCaptured() ? preferred_size_for_capture_ : preferred_size_; |
[email protected] | bcd281560 | 2012-01-14 18:17:23 | [diff] [blame] | 3581 | } |
| 3582 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 3583 | bool WebContentsImpl::GotResponseToLockMouseRequest(bool allowed) { |
lfg | f0cd46e | 2017-01-04 00:05:23 | [diff] [blame] | 3584 | if (!GuestMode::IsCrossProcessFrameGuest(GetWebContents()) && |
| 3585 | GetBrowserPluginGuest()) |
[email protected] | 660f18e | 2014-05-15 20:53:05 | [diff] [blame] | 3586 | return GetBrowserPluginGuest()->LockMouse(allowed); |
| 3587 | |
lfg | f0cd46e | 2017-01-04 00:05:23 | [diff] [blame] | 3588 | if (mouse_lock_widget_) { |
| 3589 | if (mouse_lock_widget_->delegate()->GetAsWebContents() != this) { |
| 3590 | return mouse_lock_widget_->delegate() |
| 3591 | ->GetAsWebContents() |
| 3592 | ->GotResponseToLockMouseRequest(allowed); |
| 3593 | } |
lfg | ad824435 | 2016-07-13 16:55:51 | [diff] [blame] | 3594 | |
lfg | f0cd46e | 2017-01-04 00:05:23 | [diff] [blame] | 3595 | if (mouse_lock_widget_->GotResponseToLockMouseRequest(allowed)) |
| 3596 | return true; |
| 3597 | } |
| 3598 | |
| 3599 | for (WebContentsImpl* current = this; current; |
| 3600 | current = current->GetOuterWebContents()) { |
| 3601 | current->mouse_lock_widget_ = nullptr; |
| 3602 | } |
| 3603 | |
lfg | bee1e0a | 2016-06-08 21:24:21 | [diff] [blame] | 3604 | return false; |
[email protected] | 0bfbf88 | 2011-12-22 18:19:27 | [diff] [blame] | 3605 | } |
| 3606 | |
Joe Downing | 13dd76b | 2018-04-09 18:32:15 | [diff] [blame] | 3607 | bool WebContentsImpl::GotResponseToKeyboardLockRequest(bool allowed) { |
| 3608 | if (!keyboard_lock_widget_) |
| 3609 | return false; |
| 3610 | |
| 3611 | if (keyboard_lock_widget_->delegate()->GetAsWebContents() != this) { |
| 3612 | NOTREACHED(); |
| 3613 | return false; |
| 3614 | } |
| 3615 | |
| 3616 | // KeyboardLock is only supported when called by the top-level browsing |
| 3617 | // context and is not supported in embedded content scenarios. |
| 3618 | if (GetOuterWebContents()) |
| 3619 | return false; |
| 3620 | |
| 3621 | keyboard_lock_widget_->GotResponseToKeyboardLockRequest(allowed); |
| 3622 | return true; |
| 3623 | } |
| 3624 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 3625 | bool WebContentsImpl::HasOpener() const { |
Ivan Kotenkov | 2c0d2bb3 | 2017-11-01 15:41:28 | [diff] [blame] | 3626 | return GetOpener() != nullptr; |
[email protected] | a0358d7 | 2012-03-09 14:06:50 | [diff] [blame] | 3627 | } |
| 3628 | |
lukasza | 6f8ac62 | 2017-06-06 03:10:20 | [diff] [blame] | 3629 | RenderFrameHostImpl* WebContentsImpl::GetOpener() const { |
alexmos | e201c7cd | 2015-06-10 17:14:21 | [diff] [blame] | 3630 | FrameTreeNode* opener_ftn = frame_tree_.root()->opener(); |
lukasza | 6f8ac62 | 2017-06-06 03:10:20 | [diff] [blame] | 3631 | return opener_ftn ? opener_ftn->current_frame_host() : nullptr; |
jochen | 55ff350 | 2014-12-18 20:52:57 | [diff] [blame] | 3632 | } |
| 3633 | |
jochen | 6004a36 | 2017-02-04 00:11:40 | [diff] [blame] | 3634 | bool WebContentsImpl::HasOriginalOpener() const { |
Ivan Kotenkov | 2c0d2bb3 | 2017-11-01 15:41:28 | [diff] [blame] | 3635 | return GetOriginalOpener() != nullptr; |
jochen | 6004a36 | 2017-02-04 00:11:40 | [diff] [blame] | 3636 | } |
| 3637 | |
lukasza | 6f8ac62 | 2017-06-06 03:10:20 | [diff] [blame] | 3638 | RenderFrameHostImpl* WebContentsImpl::GetOriginalOpener() const { |
jochen | 6004a36 | 2017-02-04 00:11:40 | [diff] [blame] | 3639 | FrameTreeNode* opener_ftn = frame_tree_.root()->original_opener(); |
lukasza | 6f8ac62 | 2017-06-06 03:10:20 | [diff] [blame] | 3640 | return opener_ftn ? opener_ftn->current_frame_host() : nullptr; |
jochen | 6004a36 | 2017-02-04 00:11:40 | [diff] [blame] | 3641 | } |
| 3642 | |
[email protected] | cb80545 | 2013-05-22 15:16:21 | [diff] [blame] | 3643 | void WebContentsImpl::DidChooseColorInColorChooser(SkColor color) { |
Joel Hockey | 85b379d | 2017-12-11 10:42:13 | [diff] [blame] | 3644 | color_chooser_->DidChooseColorInColorChooser(color); |
[email protected] | da854376 | 2012-03-20 08:52:20 | [diff] [blame] | 3645 | } |
| 3646 | |
[email protected] | cb80545 | 2013-05-22 15:16:21 | [diff] [blame] | 3647 | void WebContentsImpl::DidEndColorChooser() { |
Joel Hockey | 85b379d | 2017-12-11 10:42:13 | [diff] [blame] | 3648 | color_chooser_.reset(); |
[email protected] | da854376 | 2012-03-20 08:52:20 | [diff] [blame] | 3649 | } |
| 3650 | |
halton.huo | ca2eabd | 2015-07-06 08:17:40 | [diff] [blame] | 3651 | int WebContentsImpl::DownloadImage( |
| 3652 | const GURL& url, |
| 3653 | bool is_favicon, |
| 3654 | uint32_t max_bitmap_size, |
| 3655 | bool bypass_cache, |
Avi Drissman | a5a52dd | 2018-03-27 03:39:02 | [diff] [blame] | 3656 | WebContents::ImageDownloadCallback callback) { |
amistry | 9f01b77 | 2015-07-29 01:54:55 | [diff] [blame] | 3657 | DCHECK_CURRENTLY_ON(BrowserThread::UI); |
halton.huo | ca2eabd | 2015-07-06 08:17:40 | [diff] [blame] | 3658 | static int next_image_download_id = 0; |
leon.han | 6e9dee2 | 2016-02-25 03:44:06 | [diff] [blame] | 3659 | const content::mojom::ImageDownloaderPtr& mojo_image_downloader = |
halton.huo | ca2eabd | 2015-07-06 08:17:40 | [diff] [blame] | 3660 | GetMainFrame()->GetMojoImageDownloader(); |
amistry | 9f01b77 | 2015-07-29 01:54:55 | [diff] [blame] | 3661 | const int download_id = ++next_image_download_id; |
| 3662 | if (!mojo_image_downloader) { |
| 3663 | // If the renderer process is dead (i.e. crash, or memory pressure on |
| 3664 | // Android), the downloader service will be invalid. Pre-Mojo, this would |
Avi Drissman | a5a52dd | 2018-03-27 03:39:02 | [diff] [blame] | 3665 | // hang the callback indefinitely since the IPC would be dropped. Now, |
amistry | 9f01b77 | 2015-07-29 01:54:55 | [diff] [blame] | 3666 | // respond with a 400 HTTP error code to indicate that something went wrong. |
| 3667 | BrowserThread::PostTask( |
| 3668 | BrowserThread::UI, FROM_HERE, |
tzik | e2aca99 | 2017-09-05 08:50:54 | [diff] [blame] | 3669 | base::BindOnce(&WebContentsImpl::OnDidDownloadImage, |
Avi Drissman | a5a52dd | 2018-03-27 03:39:02 | [diff] [blame] | 3670 | weak_factory_.GetWeakPtr(), std::move(callback), |
| 3671 | download_id, url, 400, std::vector<SkBitmap>(), |
| 3672 | std::vector<gfx::Size>())); |
amistry | 9f01b77 | 2015-07-29 01:54:55 | [diff] [blame] | 3673 | return download_id; |
| 3674 | } |
| 3675 | |
halton.huo | ca2eabd | 2015-07-06 08:17:40 | [diff] [blame] | 3676 | mojo_image_downloader->DownloadImage( |
sammc | f6f4fcf | 2016-06-21 05:39:39 | [diff] [blame] | 3677 | url, is_favicon, max_bitmap_size, bypass_cache, |
tzik | e2aca99 | 2017-09-05 08:50:54 | [diff] [blame] | 3678 | base::BindOnce(&WebContentsImpl::OnDidDownloadImage, |
Avi Drissman | a5a52dd | 2018-03-27 03:39:02 | [diff] [blame] | 3679 | weak_factory_.GetWeakPtr(), std::move(callback), |
| 3680 | download_id, url)); |
amistry | 9f01b77 | 2015-07-29 01:54:55 | [diff] [blame] | 3681 | return download_id; |
[email protected] | 795c2897 | 2012-12-06 06:13:39 | [diff] [blame] | 3682 | } |
| 3683 | |
[email protected] | 5dcaf8e | 2013-12-28 01:31:42 | [diff] [blame] | 3684 | bool WebContentsImpl::IsSubframe() const { |
| 3685 | return is_subframe_; |
| 3686 | } |
| 3687 | |
[email protected] | 36ec24f | 2014-01-09 00:32:08 | [diff] [blame] | 3688 | void WebContentsImpl::Find(int request_id, |
| 3689 | const base::string16& search_text, |
| 3690 | const blink::WebFindOptions& options) { |
thestig | 6057a6b2 | 2015-11-12 23:01:33 | [diff] [blame] | 3691 | // Cowardly refuse to search for no text. |
| 3692 | if (search_text.empty()) { |
| 3693 | NOTREACHED(); |
| 3694 | return; |
| 3695 | } |
| 3696 | |
paulmeyer | c0b762b | 2016-04-13 11:55:17 | [diff] [blame] | 3697 | GetOrCreateFindRequestManager()->Find(request_id, search_text, options); |
[email protected] | 36ec24f | 2014-01-09 00:32:08 | [diff] [blame] | 3698 | } |
| 3699 | |
| 3700 | void WebContentsImpl::StopFinding(StopFindAction action) { |
paulmeyer | feafc2d | 2017-04-25 21:46:40 | [diff] [blame] | 3701 | if (FindRequestManager* manager = GetFindRequestManager()) |
| 3702 | manager->StopFinding(action); |
[email protected] | 36ec24f | 2014-01-09 00:32:08 | [diff] [blame] | 3703 | } |
| 3704 | |
dalecurtis | bc6572e1 | 2014-09-12 19:22:30 | [diff] [blame] | 3705 | bool WebContentsImpl::WasRecentlyAudible() { |
wjmaclean | 1dabf3e3 | 2016-05-13 23:34:44 | [diff] [blame] | 3706 | return audio_stream_monitor_.WasRecentlyAudible() || |
| 3707 | (browser_plugin_embedder_ && |
| 3708 | browser_plugin_embedder_->WereAnyGuestsRecentlyAudible()); |
dalecurtis | bc6572e1 | 2014-09-12 19:22:30 | [diff] [blame] | 3709 | } |
| 3710 | |
Tommy Steimel | 1836051 | 2017-11-01 00:38:19 | [diff] [blame] | 3711 | bool WebContentsImpl::WasEverAudible() { |
| 3712 | return was_ever_audible_; |
| 3713 | } |
| 3714 | |
Avi Drissman | a5a52dd | 2018-03-27 03:39:02 | [diff] [blame] | 3715 | void WebContentsImpl::GetManifest(GetManifestCallback callback) { |
| 3716 | manifest_manager_host_->GetManifest(std::move(callback)); |
mlamouri | efdca9d | 2014-09-16 16:55:40 | [diff] [blame] | 3717 | } |
| 3718 | |
bokan | ece34a8 | 2016-01-28 19:49:46 | [diff] [blame] | 3719 | void WebContentsImpl::ExitFullscreen(bool will_cause_resize) { |
mlamouri | 7a78d6fd | 2015-01-17 13:23:53 | [diff] [blame] | 3720 | // Clean up related state and initiate the fullscreen exit. |
avi | 3627ecac | 2015-10-16 17:40:43 | [diff] [blame] | 3721 | GetRenderViewHost()->GetWidget()->RejectMouseLockOrUnlockIfNecessary(); |
bokan | ece34a8 | 2016-01-28 19:49:46 | [diff] [blame] | 3722 | ExitFullscreenMode(will_cause_resize); |
mlamouri | 7a78d6fd | 2015-01-17 13:23:53 | [diff] [blame] | 3723 | } |
| 3724 | |
mariakhomenko | 44bdc473 | 2015-04-29 01:55:38 | [diff] [blame] | 3725 | void WebContentsImpl::ResumeLoadingCreatedWebContents() { |
mariakhomenko | a4971c1 | 2015-07-21 19:04:37 | [diff] [blame] | 3726 | if (delayed_open_url_params_.get()) { |
| 3727 | OpenURL(*delayed_open_url_params_.get()); |
| 3728 | delayed_open_url_params_.reset(nullptr); |
| 3729 | return; |
| 3730 | } |
| 3731 | |
mariakhomenko | 44bdc473 | 2015-04-29 01:55:38 | [diff] [blame] | 3732 | // Resume blocked requests for both the RenderViewHost and RenderFrameHost. |
| 3733 | // TODO(brettw): It seems bogus to reach into here and initialize the host. |
dfalcantara | e6b7b4675 | 2015-07-10 18:14:16 | [diff] [blame] | 3734 | if (is_resume_pending_) { |
| 3735 | is_resume_pending_ = false; |
avi | 0f1bbc971 | 2015-11-17 02:58:13 | [diff] [blame] | 3736 | GetRenderViewHost()->GetWidget()->Init(); |
dfalcantara | e6b7b4675 | 2015-07-10 18:14:16 | [diff] [blame] | 3737 | GetMainFrame()->Init(); |
| 3738 | } |
mariakhomenko | 44bdc473 | 2015-04-29 01:55:38 | [diff] [blame] | 3739 | } |
| 3740 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 3741 | bool WebContentsImpl::FocusLocationBarByDefault() { |
palmer | c70cb1f | 2016-03-04 23:41:26 | [diff] [blame] | 3742 | // When the browser is started with about:blank as the startup URL, focus |
| 3743 | // the location bar (which will also select its contents) so people can |
| 3744 | // simply begin typing to navigate elsewhere. |
| 3745 | // |
| 3746 | // We need to be careful not to trigger this for anything other than the |
| 3747 | // startup navigation. In particular, if we allow an attacker to open a |
| 3748 | // popup to about:blank, then navigate, focusing the Omnibox will cause the |
| 3749 | // end of the new URL to be scrolled into view instead of the start, |
| 3750 | // allowing the attacker to spoof other URLs. The conditions checked here |
| 3751 | // are all aimed at ensuring no such attacker-controlled navigation can |
| 3752 | // trigger this. |
| 3753 | // |
| 3754 | // Note that we check the pending entry instead of the visible one; for the |
| 3755 | // startup URL case these are the same, but for the attacker-controlled |
| 3756 | // navigation case the visible entry is the committed "about:blank" URL and |
| 3757 | // the pending entry is the problematic navigation elsewhere. |
| 3758 | NavigationEntryImpl* entry = controller_.GetPendingEntry(); |
| 3759 | if (controller_.IsInitialNavigation() && entry && |
| 3760 | !entry->is_renderer_initiated() && |
csharrison | a3bd0b3 | 2016-10-19 18:40:48 | [diff] [blame] | 3761 | entry->GetURL() == url::kAboutBlankURL) { |
[email protected] | 0c940663 | 2013-02-08 01:13:33 | [diff] [blame] | 3762 | return true; |
palmer | c70cb1f | 2016-03-04 23:41:26 | [diff] [blame] | 3763 | } |
[email protected] | 0c940663 | 2013-02-08 01:13:33 | [diff] [blame] | 3764 | return delegate_ && delegate_->ShouldFocusLocationBarByDefault(this); |
[email protected] | 0bfbf88 | 2011-12-22 18:19:27 | [diff] [blame] | 3765 | } |
| 3766 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 3767 | void WebContentsImpl::SetFocusToLocationBar(bool select_all) { |
[email protected] | 0bfbf88 | 2011-12-22 18:19:27 | [diff] [blame] | 3768 | if (delegate_) |
| 3769 | delegate_->SetFocusToLocationBar(select_all); |
[email protected] | c40d623 | 2011-03-25 00:16:21 | [diff] [blame] | 3770 | } |
| 3771 | |
clamy | 0e11988 | 2015-07-31 16:12:33 | [diff] [blame] | 3772 | void WebContentsImpl::DidStartNavigation(NavigationHandle* navigation_handle) { |
Charles Harrison | 53096ba | 2017-12-15 15:39:48 | [diff] [blame] | 3773 | TRACE_EVENT1("navigation", "WebContentsImpl::DidStartNavigation", |
| 3774 | "navigation_handle", navigation_handle); |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 3775 | for (auto& observer : observers_) |
| 3776 | observer.DidStartNavigation(navigation_handle); |
clamy | 0e11988 | 2015-07-31 16:12:33 | [diff] [blame] | 3777 | } |
| 3778 | |
| 3779 | void WebContentsImpl::DidRedirectNavigation( |
| 3780 | NavigationHandle* navigation_handle) { |
Charles Harrison | 53096ba | 2017-12-15 15:39:48 | [diff] [blame] | 3781 | TRACE_EVENT1("navigation", "WebContentsImpl::DidRedirectNavigation", |
| 3782 | "navigation_handle", navigation_handle); |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 3783 | for (auto& observer : observers_) |
| 3784 | observer.DidRedirectNavigation(navigation_handle); |
jam | 5f358e5 | 2017-02-13 16:37:03 | [diff] [blame] | 3785 | |
| 3786 | // Notify accessibility if this is a reload. This has to called on the |
| 3787 | // BrowserAccessibilityManager associated with the old RFHI. |
| 3788 | if (navigation_handle->GetReloadType() != ReloadType::NONE) { |
| 3789 | NavigationHandleImpl* nhi = |
| 3790 | static_cast<NavigationHandleImpl*>(navigation_handle); |
| 3791 | BrowserAccessibilityManager* manager = |
| 3792 | nhi->frame_tree_node() |
| 3793 | ->current_frame_host() |
| 3794 | ->browser_accessibility_manager(); |
| 3795 | if (manager) |
| 3796 | manager->UserIsReloading(); |
| 3797 | } |
clamy | 0e11988 | 2015-07-31 16:12:33 | [diff] [blame] | 3798 | } |
| 3799 | |
clamy | efca29e | 2015-09-17 00:22:11 | [diff] [blame] | 3800 | void WebContentsImpl::ReadyToCommitNavigation( |
| 3801 | NavigationHandle* navigation_handle) { |
Charles Harrison | 53096ba | 2017-12-15 15:39:48 | [diff] [blame] | 3802 | TRACE_EVENT1("navigation", "WebContentsImpl::ReadyToCommitNavigation", |
| 3803 | "navigation_handle", navigation_handle); |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 3804 | for (auto& observer : observers_) |
| 3805 | observer.ReadyToCommitNavigation(navigation_handle); |
John Abd-El-Malek | d488264 | 2017-12-04 21:45:19 | [diff] [blame] | 3806 | |
Kenneth Russell | 954ed9ce | 2018-04-12 23:07:01 | [diff] [blame] | 3807 | // If any domains are blocked from accessing 3D APIs because they may |
| 3808 | // have caused the GPU to reset recently, unblock them here if the user |
| 3809 | // initiated this navigation. This implies that the user was involved in |
| 3810 | // the decision to navigate, so there's no concern about |
| 3811 | // denial-of-service issues. Want to do this as early as |
| 3812 | // possible to avoid race conditions with pages attempting to access |
| 3813 | // WebGL early on. |
| 3814 | // |
| 3815 | // TODO(crbug.com/617904): currently navigations initiated by the browser |
| 3816 | // (reload button, reload menu option, pressing return in the Omnibox) |
| 3817 | // return false from HasUserGesture(). If or when that is addressed, |
| 3818 | // remove the check for IsRendererInitiated() below. |
| 3819 | // |
| 3820 | // TODO(crbug.com/832180): HasUserGesture comes from the renderer |
| 3821 | // process and isn't validated. Until it is, don't trust it. |
| 3822 | if (!navigation_handle->IsRendererInitiated()) { |
| 3823 | GpuDataManagerImpl::GetInstance()->UnblockDomainFrom3DAPIs( |
| 3824 | navigation_handle->GetURL()); |
| 3825 | } |
| 3826 | |
John Abd-El-Malek | fde08e6da | 2017-12-05 04:06:24 | [diff] [blame] | 3827 | if (navigation_handle->IsSameDocument()) |
| 3828 | return; |
| 3829 | |
John Abd-El-Malek | d488264 | 2017-12-04 21:45:19 | [diff] [blame] | 3830 | controller_.ssl_manager()->DidStartResourceResponse( |
| 3831 | navigation_handle->GetURL(), |
| 3832 | net::IsCertStatusError(navigation_handle->GetSSLInfo().cert_status)); |
John Abd-El-Malek | fde08e6da | 2017-12-05 04:06:24 | [diff] [blame] | 3833 | |
| 3834 | SetNotWaitingForResponse(); |
clamy | efca29e | 2015-09-17 00:22:11 | [diff] [blame] | 3835 | } |
| 3836 | |
clamy | 0e11988 | 2015-07-31 16:12:33 | [diff] [blame] | 3837 | void WebContentsImpl::DidFinishNavigation(NavigationHandle* navigation_handle) { |
Charles Harrison | 53096ba | 2017-12-15 15:39:48 | [diff] [blame] | 3838 | TRACE_EVENT1("navigation", "WebContentsImpl::DidFinishNavigation", |
| 3839 | "navigation_handle", navigation_handle); |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 3840 | for (auto& observer : observers_) |
| 3841 | observer.DidFinishNavigation(navigation_handle); |
clamy | 0e11988 | 2015-07-31 16:12:33 | [diff] [blame] | 3842 | |
jam | 5f358e5 | 2017-02-13 16:37:03 | [diff] [blame] | 3843 | if (navigation_handle->HasCommitted()) { |
dmazzoni | bf8cec4 | 2015-02-08 08:28:08 | [diff] [blame] | 3844 | BrowserAccessibilityManager* manager = |
jam | 5f358e5 | 2017-02-13 16:37:03 | [diff] [blame] | 3845 | static_cast<RenderFrameHostImpl*>( |
| 3846 | navigation_handle->GetRenderFrameHost()) |
| 3847 | ->browser_accessibility_manager(); |
| 3848 | if (manager) { |
| 3849 | if (navigation_handle->IsErrorPage()) { |
| 3850 | manager->NavigationFailed(); |
| 3851 | } else { |
| 3852 | manager->NavigationSucceeded(); |
| 3853 | } |
| 3854 | } |
Tommy Steimel | 1836051 | 2017-11-01 00:38:19 | [diff] [blame] | 3855 | |
| 3856 | if (navigation_handle->IsInMainFrame() && |
| 3857 | !navigation_handle->IsSameDocument()) { |
| 3858 | was_ever_audible_ = false; |
| 3859 | } |
dmazzoni | bf8cec4 | 2015-02-08 08:28:08 | [diff] [blame] | 3860 | } |
[email protected] | 400992b | 2012-06-14 00:03:54 | [diff] [blame] | 3861 | } |
| 3862 | |
[email protected] | b80624c | 2014-02-09 02:46:55 | [diff] [blame] | 3863 | void WebContentsImpl::DidFailLoadWithError( |
| 3864 | RenderFrameHostImpl* render_frame_host, |
[email protected] | b80624c | 2014-02-09 02:46:55 | [diff] [blame] | 3865 | const GURL& url, |
[email protected] | b80624c | 2014-02-09 02:46:55 | [diff] [blame] | 3866 | int error_code, |
Yutaka Hirano | 16d3c5d | 2017-07-31 06:17:30 | [diff] [blame] | 3867 | const base::string16& error_description) { |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 3868 | for (auto& observer : observers_) { |
Yutaka Hirano | 16d3c5d | 2017-07-31 06:17:30 | [diff] [blame] | 3869 | observer.DidFailLoad(render_frame_host, url, error_code, error_description); |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 3870 | } |
[email protected] | b80624c | 2014-02-09 02:46:55 | [diff] [blame] | 3871 | } |
| 3872 | |
[email protected] | 5291380 | 2013-12-10 05:52:18 | [diff] [blame] | 3873 | void WebContentsImpl::NotifyChangedNavigationState( |
| 3874 | InvalidateTypes changed_flags) { |
| 3875 | NotifyNavigationStateChanged(changed_flags); |
| 3876 | } |
| 3877 | |
toyoshim | 0df1d3a | 2016-09-09 09:52:48 | [diff] [blame] | 3878 | void WebContentsImpl::DidStartNavigationToPendingEntry(const GURL& url, |
| 3879 | ReloadType reload_type) { |
[email protected] | 3691e5cf | 2014-01-22 10:16:20 | [diff] [blame] | 3880 | // Notify observers about navigation. |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 3881 | for (auto& observer : observers_) |
| 3882 | observer.DidStartNavigationToPendingEntry(url, reload_type); |
[email protected] | 3691e5cf | 2014-01-22 10:16:20 | [diff] [blame] | 3883 | } |
| 3884 | |
lukasza | 1d02573 | 2016-09-28 21:36:08 | [diff] [blame] | 3885 | bool WebContentsImpl::ShouldTransferNavigation(bool is_main_frame_navigation) { |
creis | 2946027 | 2015-12-16 04:38:22 | [diff] [blame] | 3886 | if (!delegate_) |
| 3887 | return true; |
lukasza | 1d02573 | 2016-09-28 21:36:08 | [diff] [blame] | 3888 | return delegate_->ShouldTransferNavigation(is_main_frame_navigation); |
creis | 2946027 | 2015-12-16 04:38:22 | [diff] [blame] | 3889 | } |
| 3890 | |
[email protected] | aa62afd | 2014-04-22 19:22:46 | [diff] [blame] | 3891 | bool WebContentsImpl::ShouldPreserveAbortedURLs() { |
| 3892 | if (!delegate_) |
| 3893 | return false; |
| 3894 | return delegate_->ShouldPreserveAbortedURLs(this); |
| 3895 | } |
| 3896 | |
[email protected] | 0d0f4c49 | 2014-04-02 06:42:57 | [diff] [blame] | 3897 | void WebContentsImpl::DidNavigateMainFramePreCommit( |
[email protected] | 5cfbddc | 2014-06-23 23:52:23 | [diff] [blame] | 3898 | bool navigation_is_within_page) { |
[email protected] | 0d0f4c49 | 2014-04-02 06:42:57 | [diff] [blame] | 3899 | // Ensure fullscreen mode is exited before committing the navigation to a |
| 3900 | // different page. The next page will not start out assuming it is in |
| 3901 | // fullscreen mode. |
[email protected] | 5cfbddc | 2014-06-23 23:52:23 | [diff] [blame] | 3902 | if (navigation_is_within_page) { |
[email protected] | dfc39cb | 2014-04-09 22:58:19 | [diff] [blame] | 3903 | // No page change? Then, the renderer and browser can remain in fullscreen. |
[email protected] | 0d0f4c49 | 2014-04-02 06:42:57 | [diff] [blame] | 3904 | return; |
| 3905 | } |
alexmos | 5dd617d | 2016-06-07 04:21:15 | [diff] [blame] | 3906 | if (IsFullscreenForCurrentTab()) |
bokan | ece34a8 | 2016-01-28 19:49:46 | [diff] [blame] | 3907 | ExitFullscreen(false); |
alexmos | 5dd617d | 2016-06-07 04:21:15 | [diff] [blame] | 3908 | DCHECK(!IsFullscreenForCurrentTab()); |
[email protected] | 0d0f4c49 | 2014-04-02 06:42:57 | [diff] [blame] | 3909 | } |
| 3910 | |
[email protected] | 37567b43 | 2014-02-12 01:12:22 | [diff] [blame] | 3911 | void WebContentsImpl::DidNavigateMainFramePostCommit( |
sky | 8b00392d | 2015-01-10 00:30:28 | [diff] [blame] | 3912 | RenderFrameHostImpl* render_frame_host, |
[email protected] | 37567b43 | 2014-02-12 01:12:22 | [diff] [blame] | 3913 | const LoadCommittedDetails& details, |
| 3914 | const FrameHostMsg_DidCommitProvisionalLoad_Params& params) { |
| 3915 | if (details.is_navigation_to_different_page()) { |
| 3916 | // Clear the status bubble. This is a workaround for a bug where WebKit |
| 3917 | // doesn't let us know that the cursor left an element during a |
| 3918 | // transition (this is also why the mouse cursor remains as a hand after |
| 3919 | // clicking on a link); see bugs 1184641 and 980803. We don't want to |
| 3920 | // clear the bubble when a user navigates to a named anchor in the same |
| 3921 | // page. |
Lukasz Anforowicz | fd70714 | 2018-02-07 19:46:13 | [diff] [blame] | 3922 | ClearTargetURL(); |
lanwei | 9d343ad2 | 2015-02-11 01:46:00 | [diff] [blame] | 3923 | |
| 3924 | RenderWidgetHostViewBase* rwhvb = |
| 3925 | static_cast<RenderWidgetHostViewBase*>(GetRenderWidgetHostView()); |
| 3926 | if (rwhvb) |
| 3927 | rwhvb->OnDidNavigateMainFrameToNewPage(); |
yusufo | d41c5f9 | 2015-03-06 00:14:28 | [diff] [blame] | 3928 | |
peter | 90afaba | 2015-06-01 12:05:29 | [diff] [blame] | 3929 | did_first_visually_non_empty_paint_ = false; |
| 3930 | |
yusufo | d41c5f9 | 2015-03-06 00:14:28 | [diff] [blame] | 3931 | // Reset theme color on navigation to new page. |
| 3932 | theme_color_ = SK_ColorTRANSPARENT; |
[email protected] | 37567b43 | 2014-02-12 01:12:22 | [diff] [blame] | 3933 | } |
| 3934 | |
[email protected] | e85165c64 | 2014-06-10 14:34:31 | [diff] [blame] | 3935 | if (delegate_) |
[email protected] | 37567b43 | 2014-02-12 01:12:22 | [diff] [blame] | 3936 | delegate_->DidNavigateMainFramePostCommit(this); |
[email protected] | e85165c64 | 2014-06-10 14:34:31 | [diff] [blame] | 3937 | view_->SetOverscrollControllerEnabled(CanOverscrollContent()); |
[email protected] | 37567b43 | 2014-02-12 01:12:22 | [diff] [blame] | 3938 | } |
| 3939 | |
| 3940 | void WebContentsImpl::DidNavigateAnyFramePostCommit( |
| 3941 | RenderFrameHostImpl* render_frame_host, |
| 3942 | const LoadCommittedDetails& details, |
| 3943 | const FrameHostMsg_DidCommitProvisionalLoad_Params& params) { |
[email protected] | b4c8401 | 2014-04-28 19:51:10 | [diff] [blame] | 3944 | // Now that something has committed, we don't need to track whether the |
| 3945 | // initial page has been accessed. |
| 3946 | has_accessed_initial_document_ = false; |
| 3947 | |
[email protected] | 37567b43 | 2014-02-12 01:12:22 | [diff] [blame] | 3948 | // If we navigate off the page, close all JavaScript dialogs. |
eugenebut | ee08663a | 2017-04-27 17:43:12 | [diff] [blame] | 3949 | if (!details.is_same_document) |
creis | 89a0f78 | 2015-05-27 16:13:17 | [diff] [blame] | 3950 | CancelActiveAndPendingDialogs(); |
[email protected] | 37567b43 | 2014-02-12 01:12:22 | [diff] [blame] | 3951 | |
avi | d53461d | 2016-02-25 17:15:04 | [diff] [blame] | 3952 | // If this is a user-initiated navigation, start allowing JavaScript dialogs |
| 3953 | // again. |
avi | 5d3b869 | 2016-10-12 22:00:46 | [diff] [blame] | 3954 | if (params.gesture == NavigationGestureUser && dialog_manager_) { |
avi | 6879fcf | 2017-01-21 05:27:53 | [diff] [blame] | 3955 | dialog_manager_->CancelDialogs(this, /*reset_state=*/true); |
avi | 5d3b869 | 2016-10-12 22:00:46 | [diff] [blame] | 3956 | } |
[email protected] | 37567b43 | 2014-02-12 01:12:22 | [diff] [blame] | 3957 | } |
| 3958 | |
| 3959 | void WebContentsImpl::SetMainFrameMimeType(const std::string& mime_type) { |
| 3960 | contents_mime_type_ = mime_type; |
| 3961 | } |
| 3962 | |
[email protected] | 277857a | 2014-06-03 10:38:01 | [diff] [blame] | 3963 | bool WebContentsImpl::CanOverscrollContent() const { |
[email protected] | e85165c64 | 2014-06-10 14:34:31 | [diff] [blame] | 3964 | // Disable overscroll when touch emulation is on. See crbug.com/369938. |
[email protected] | 34ff1cfc | 2014-08-20 06:16:05 | [diff] [blame] | 3965 | if (force_disable_overscroll_content_) |
[email protected] | e85165c64 | 2014-06-10 14:34:31 | [diff] [blame] | 3966 | return false; |
| 3967 | |
[email protected] | 37567b43 | 2014-02-12 01:12:22 | [diff] [blame] | 3968 | if (delegate_) |
| 3969 | return delegate_->CanOverscrollContent(); |
| 3970 | |
| 3971 | return false; |
| 3972 | } |
| 3973 | |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 3974 | void WebContentsImpl::OnThemeColorChanged(RenderFrameHostImpl* source, |
| 3975 | SkColor theme_color) { |
| 3976 | if (source != GetMainFrame()) { |
| 3977 | // Only the main frame may control the theme. |
| 3978 | return; |
| 3979 | } |
| 3980 | |
peter | 90afaba | 2015-06-01 12:05:29 | [diff] [blame] | 3981 | // Update the theme color. This is to be published to observers after the |
| 3982 | // first visually non-empty paint. |
yusufo | d41c5f9 | 2015-03-06 00:14:28 | [diff] [blame] | 3983 | theme_color_ = theme_color; |
peter | 90afaba | 2015-06-01 12:05:29 | [diff] [blame] | 3984 | |
| 3985 | if (did_first_visually_non_empty_paint_ && |
| 3986 | last_sent_theme_color_ != theme_color_) { |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 3987 | for (auto& observer : observers_) |
| 3988 | observer.DidChangeThemeColor(theme_color_); |
peter | 90afaba | 2015-06-01 12:05:29 | [diff] [blame] | 3989 | last_sent_theme_color_ = theme_color_; |
| 3990 | } |
[email protected] | e710476 | 2014-06-20 19:17:25 | [diff] [blame] | 3991 | } |
| 3992 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 3993 | void WebContentsImpl::OnDidLoadResourceFromMemoryCache( |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 3994 | RenderFrameHostImpl* source, |
[email protected] | 724159a | 2010-12-30 01:11:18 | [diff] [blame] | 3995 | const GURL& url, |
[email protected] | 7043596 | 2011-08-02 20:13:28 | [diff] [blame] | 3996 | const std::string& http_method, |
[email protected] | 6d6cfb3a | 2012-05-23 22:53:18 | [diff] [blame] | 3997 | const std::string& mime_type, |
[email protected] | 6c1e0521 | 2014-07-31 00:59:40 | [diff] [blame] | 3998 | ResourceType resource_type) { |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 3999 | for (auto& observer : observers_) |
| 4000 | observer.DidLoadResourceFromMemoryCache(url, mime_type, resource_type); |
[email protected] | b0f724c | 2013-09-05 04:21:13 | [diff] [blame] | 4001 | |
[email protected] | 8bfc827 | 2013-09-09 20:10:53 | [diff] [blame] | 4002 | if (url.is_valid() && url.SchemeIsHTTPOrHTTPS()) { |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4003 | StoragePartition* partition = source->GetProcess()->GetStoragePartition(); |
[email protected] | 8bfc827 | 2013-09-09 20:10:53 | [diff] [blame] | 4004 | scoped_refptr<net::URLRequestContextGetter> request_context( |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4005 | resource_type == RESOURCE_TYPE_MEDIA |
| 4006 | ? partition->GetMediaURLRequestContext() |
| 4007 | : partition->GetURLRequestContext()); |
[email protected] | 8bfc827 | 2013-09-09 20:10:53 | [diff] [blame] | 4008 | BrowserThread::PostTask( |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4009 | BrowserThread::IO, FROM_HERE, |
tzik | e2aca99 | 2017-09-05 08:50:54 | [diff] [blame] | 4010 | base::BindOnce(&NotifyCacheOnIO, request_context, url, http_method)); |
[email protected] | 8bfc827 | 2013-09-09 20:10:53 | [diff] [blame] | 4011 | } |
[email protected] | 724159a | 2010-12-30 01:11:18 | [diff] [blame] | 4012 | } |
| 4013 | |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4014 | void WebContentsImpl::OnDidDisplayInsecureContent(RenderFrameHostImpl* source) { |
| 4015 | // Any frame can trigger display of insecure content, so we don't check |
| 4016 | // |source| here. |
carlosk | d9d9794 | 2017-02-16 08:58:09 | [diff] [blame] | 4017 | DidDisplayInsecureContent(); |
| 4018 | } |
| 4019 | |
| 4020 | void WebContentsImpl::DidDisplayInsecureContent() { |
estark | c227350 | 2016-10-12 22:03:02 | [diff] [blame] | 4021 | controller_.ssl_manager()->DidDisplayMixedContent(); |
[email protected] | 724159a | 2010-12-30 01:11:18 | [diff] [blame] | 4022 | } |
| 4023 | |
elawrence | b2ac2a23 | 2017-03-27 21:46:25 | [diff] [blame] | 4024 | void WebContentsImpl::OnDidContainInsecureFormAction( |
| 4025 | RenderFrameHostImpl* source) { |
| 4026 | controller_.ssl_manager()->DidContainInsecureFormAction(); |
| 4027 | } |
| 4028 | |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4029 | void WebContentsImpl::OnDidRunInsecureContent(RenderFrameHostImpl* source, |
| 4030 | const GURL& security_origin, |
estark | 910b457 | 2015-12-09 20:55:41 | [diff] [blame] | 4031 | const GURL& target_url) { |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4032 | // TODO(nick, estark): Should we call FilterURL using |source|'s process on |
| 4033 | // these parameters? |target_url| seems unused, except for a log message. And |
| 4034 | // |security_origin| might be replaceable with the origin of the main frame. |
carlosk | d9d9794 | 2017-02-16 08:58:09 | [diff] [blame] | 4035 | DidRunInsecureContent(security_origin, target_url); |
| 4036 | } |
| 4037 | |
| 4038 | void WebContentsImpl::DidRunInsecureContent(const GURL& security_origin, |
| 4039 | const GURL& target_url) { |
[email protected] | 9450c46 | 2013-11-23 01:22:58 | [diff] [blame] | 4040 | LOG(WARNING) << security_origin << " ran insecure content from " |
| 4041 | << target_url.possibly_invalid_spec(); |
[email protected] | e6e30ac | 2014-01-13 21:24:39 | [diff] [blame] | 4042 | RecordAction(base::UserMetricsAction("SSL.RanInsecureContent")); |
estark | 910b457 | 2015-12-09 20:55:41 | [diff] [blame] | 4043 | if (base::EndsWith(security_origin.spec(), kDotGoogleDotCom, |
brettw | a7ff1b29 | 2015-07-16 17:49:29 | [diff] [blame] | 4044 | base::CompareCase::INSENSITIVE_ASCII)) |
[email protected] | e6e30ac | 2014-01-13 21:24:39 | [diff] [blame] | 4045 | RecordAction(base::UserMetricsAction("SSL.RanInsecureContentGoogle")); |
estark | c227350 | 2016-10-12 22:03:02 | [diff] [blame] | 4046 | controller_.ssl_manager()->DidRunMixedContent(security_origin); |
[email protected] | 724159a | 2010-12-30 01:11:18 | [diff] [blame] | 4047 | } |
| 4048 | |
carlosk | d9d9794 | 2017-02-16 08:58:09 | [diff] [blame] | 4049 | void WebContentsImpl::PassiveInsecureContentFound(const GURL& resource_url) { |
Sergey Kuznetsov | 3ebc01b | 2018-02-01 04:57:36 | [diff] [blame] | 4050 | if (delegate_) { |
| 4051 | delegate_->PassiveInsecureContentFound(resource_url); |
| 4052 | } |
carlosk | d9d9794 | 2017-02-16 08:58:09 | [diff] [blame] | 4053 | } |
| 4054 | |
| 4055 | bool WebContentsImpl::ShouldAllowRunningInsecureContent( |
| 4056 | WebContents* web_contents, |
| 4057 | bool allowed_per_prefs, |
| 4058 | const url::Origin& origin, |
| 4059 | const GURL& resource_url) { |
Sergey Kuznetsov | 3ebc01b | 2018-02-01 04:57:36 | [diff] [blame] | 4060 | if (delegate_) { |
| 4061 | return delegate_->ShouldAllowRunningInsecureContent( |
| 4062 | web_contents, allowed_per_prefs, origin, resource_url); |
| 4063 | } |
| 4064 | |
| 4065 | return allowed_per_prefs; |
carlosk | d9d9794 | 2017-02-16 08:58:09 | [diff] [blame] | 4066 | } |
| 4067 | |
Lukasz Anforowicz | e1b954d9 | 2017-10-30 21:28:06 | [diff] [blame] | 4068 | void WebContentsImpl::ViewSource(RenderFrameHostImpl* frame) { |
| 4069 | DCHECK_EQ(this, WebContents::FromRenderFrameHost(frame)); |
| 4070 | |
| 4071 | // Don't do anything if there is no |delegate_| that could accept and show the |
| 4072 | // new WebContents containing the view-source. |
| 4073 | if (!delegate_) |
| 4074 | return; |
| 4075 | |
| 4076 | // Use the last committed entry, since the pending entry hasn't loaded yet and |
| 4077 | // won't be copied into the cloned tab. |
| 4078 | NavigationEntryImpl* last_committed_entry = |
| 4079 | static_cast<NavigationEntryImpl*>(frame->frame_tree_node() |
| 4080 | ->navigator() |
| 4081 | ->GetController() |
| 4082 | ->GetLastCommittedEntry()); |
| 4083 | if (!last_committed_entry) |
| 4084 | return; |
| 4085 | |
| 4086 | FrameNavigationEntry* frame_entry = |
| 4087 | last_committed_entry->GetFrameEntry(frame->frame_tree_node()); |
| 4088 | if (!frame_entry) |
| 4089 | return; |
| 4090 | |
| 4091 | // Any new WebContents opened while this WebContents is in fullscreen can be |
| 4092 | // used to confuse the user, so drop fullscreen. |
| 4093 | if (IsFullscreenForCurrentTab()) |
| 4094 | ExitFullscreen(true); |
| 4095 | |
| 4096 | // We intentionally don't share the SiteInstance with the original frame so |
| 4097 | // that view source has a consistent process model and always ends up in a new |
| 4098 | // process (https://crbug.com/699493). |
| 4099 | scoped_refptr<SiteInstanceImpl> site_instance_for_view_source = nullptr; |
| 4100 | // Referrer is not important, because view-source should not hit the network, |
| 4101 | // but should be served from the cache instead. |
| 4102 | Referrer referrer_for_view_source; |
| 4103 | // Do not restore title, derive it from the url. |
| 4104 | base::string16 title_for_view_source; |
| 4105 | auto navigation_entry = std::make_unique<NavigationEntryImpl>( |
| 4106 | site_instance_for_view_source, frame_entry->url(), |
| 4107 | referrer_for_view_source, title_for_view_source, ui::PAGE_TRANSITION_LINK, |
| 4108 | /* is_renderer_initiated = */ false); |
| 4109 | navigation_entry->SetVirtualURL(GURL(content::kViewSourceScheme + |
| 4110 | std::string(":") + |
| 4111 | frame_entry->url().spec())); |
| 4112 | |
| 4113 | // Do not restore scroller position. |
| 4114 | // TODO(creis, lukasza, arthursonzogni): Do not reuse the original PageState, |
| 4115 | // but start from a new one and only copy the needed data. |
| 4116 | const PageState& new_page_state = |
| 4117 | frame_entry->page_state().RemoveScrollOffset(); |
| 4118 | |
| 4119 | scoped_refptr<FrameNavigationEntry> new_frame_entry = |
| 4120 | navigation_entry->root_node()->frame_entry; |
| 4121 | new_frame_entry->set_method(frame_entry->method()); |
| 4122 | new_frame_entry->SetPageState(new_page_state); |
| 4123 | |
| 4124 | // Create a new WebContents, which is used to display the source code. |
erikchen | bee5c962 | 2018-04-27 19:30:25 | [diff] [blame] | 4125 | std::unique_ptr<WebContents> view_source_contents = |
Erik Chen | bb8e738e | 2018-04-28 14:10:43 | [diff] [blame] | 4126 | Create(CreateParams(GetBrowserContext())); |
Lukasz Anforowicz | e1b954d9 | 2017-10-30 21:28:06 | [diff] [blame] | 4127 | |
| 4128 | // Restore the previously created NavigationEntry. |
| 4129 | std::vector<std::unique_ptr<NavigationEntry>> navigation_entries; |
| 4130 | navigation_entries.push_back(std::move(navigation_entry)); |
| 4131 | view_source_contents->GetController().Restore(0, RestoreType::CURRENT_SESSION, |
| 4132 | &navigation_entries); |
| 4133 | |
| 4134 | // Add |view_source_contents| as a new tab. |
| 4135 | gfx::Rect initial_rect; |
| 4136 | constexpr bool kUserGesture = true; |
| 4137 | bool ignored_was_blocked; |
erikchen | bee5c962 | 2018-04-27 19:30:25 | [diff] [blame] | 4138 | delegate_->AddNewContents(this, std::move(view_source_contents), |
Lukasz Anforowicz | e1b954d9 | 2017-10-30 21:28:06 | [diff] [blame] | 4139 | WindowOpenDisposition::NEW_FOREGROUND_TAB, |
| 4140 | initial_rect, kUserGesture, &ignored_was_blocked); |
| 4141 | // Note that the |delegate_| could have deleted |view_source_contents| during |
| 4142 | // AddNewContents method call. |
| 4143 | } |
| 4144 | |
Jay Civelli | d5904f0 | 2018-03-23 19:43:57 | [diff] [blame] | 4145 | void WebContentsImpl::SubresourceResponseStarted(const GURL& url, |
| 4146 | net::CertStatus cert_status) { |
| 4147 | controller_.ssl_manager()->DidStartResourceResponse(url, cert_status); |
| 4148 | SetNotWaitingForResponse(); |
| 4149 | } |
| 4150 | |
Jay Civelli | 116683f | 2018-03-27 19:56:23 | [diff] [blame] | 4151 | void WebContentsImpl::ResourceLoadComplete( |
Jay Civelli | 52a6330 | 2018-04-30 22:39:55 | [diff] [blame] | 4152 | RenderFrameHost* render_frame_host, |
Jay Civelli | 116683f | 2018-03-27 19:56:23 | [diff] [blame] | 4153 | mojom::ResourceLoadInfoPtr resource_load_info) { |
Jay Civelli | 52a6330 | 2018-04-30 22:39:55 | [diff] [blame] | 4154 | bool is_main_frame = !render_frame_host->GetParent(); |
John Abd-El-Malek | 9b8f7fa | 2017-12-04 23:52:25 | [diff] [blame] | 4155 | for (auto& observer : observers_) { |
Jay Civelli | 52a6330 | 2018-04-30 22:39:55 | [diff] [blame] | 4156 | observer.ResourceLoadComplete(*resource_load_info, is_main_frame); |
John Abd-El-Malek | 9b8f7fa | 2017-12-04 23:52:25 | [diff] [blame] | 4157 | } |
John Abd-El-Malek | d488264 | 2017-12-04 21:45:19 | [diff] [blame] | 4158 | } |
| 4159 | |
Wei Li | 5bb65974 | 2018-02-14 03:07:58 | [diff] [blame] | 4160 | void WebContentsImpl::PrintCrossProcessSubframe( |
| 4161 | const gfx::Rect& rect, |
| 4162 | int document_cookie, |
| 4163 | RenderFrameHost* subframe_host) { |
Wei Li | 5c0b4d1 | 2018-03-22 15:05:22 | [diff] [blame] | 4164 | auto* outer_contents = GetOuterWebContents(); |
| 4165 | if (outer_contents) { |
| 4166 | // When an extension or app page is printed, the content should be |
| 4167 | // composited with outer content, so the outer contents should handle the |
| 4168 | // print request. |
| 4169 | outer_contents->PrintCrossProcessSubframe(rect, document_cookie, |
| 4170 | subframe_host); |
| 4171 | return; |
| 4172 | } |
| 4173 | |
Wei Li | 5bb65974 | 2018-02-14 03:07:58 | [diff] [blame] | 4174 | // If there is no delegate such as in tests or during deletion, do nothing. |
| 4175 | if (!delegate_) |
| 4176 | return; |
| 4177 | |
| 4178 | delegate_->PrintCrossProcessSubframe(this, rect, document_cookie, |
| 4179 | subframe_host); |
| 4180 | } |
| 4181 | |
Jennifer Apacible | c45fd05 | 2018-02-25 12:04:55 | [diff] [blame] | 4182 | void WebContentsImpl::UpdatePictureInPictureSurfaceId( |
Jennifer Apacible | b1c9ca1 | 2018-04-12 07:49:38 | [diff] [blame] | 4183 | const viz::SurfaceId& surface_id, |
| 4184 | const gfx::Size& natural_size) { |
Jennifer Apacible | c45fd05 | 2018-02-25 12:04:55 | [diff] [blame] | 4185 | if (delegate_) |
Jennifer Apacible | b1c9ca1 | 2018-04-12 07:49:38 | [diff] [blame] | 4186 | delegate_->UpdatePictureInPictureSurfaceId(surface_id, natural_size); |
Jennifer Apacible | c45fd05 | 2018-02-25 12:04:55 | [diff] [blame] | 4187 | } |
| 4188 | |
Jennifer Apacible | f6d55b1 | 2018-04-06 04:23:40 | [diff] [blame] | 4189 | void WebContentsImpl::ExitPictureInPicture() { |
| 4190 | if (delegate_) |
| 4191 | delegate_->ExitPictureInPicture(); |
| 4192 | } |
| 4193 | |
rob.buis | 300b087 | 2017-03-10 20:43:58 | [diff] [blame] | 4194 | #if defined(OS_ANDROID) |
| 4195 | base::android::ScopedJavaLocalRef<jobject> |
| 4196 | WebContentsImpl::GetJavaRenderFrameHostDelegate() { |
| 4197 | return GetJavaWebContents(); |
| 4198 | } |
| 4199 | #endif |
| 4200 | |
estark | 910b457 | 2015-12-09 20:55:41 | [diff] [blame] | 4201 | void WebContentsImpl::OnDidDisplayContentWithCertificateErrors( |
Zhuoyu Qian | 4353f7f | 2018-01-08 05:33:00 | [diff] [blame] | 4202 | RenderFrameHostImpl* source) { |
estark | c227350 | 2016-10-12 22:03:02 | [diff] [blame] | 4203 | controller_.ssl_manager()->DidDisplayContentWithCertErrors(); |
estark | 910b457 | 2015-12-09 20:55:41 | [diff] [blame] | 4204 | } |
| 4205 | |
| 4206 | void WebContentsImpl::OnDidRunContentWithCertificateErrors( |
Zhuoyu Qian | 4353f7f | 2018-01-08 05:33:00 | [diff] [blame] | 4207 | RenderFrameHostImpl* source) { |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4208 | // TODO(nick, estark): Do we need to consider |source| here somehow? |
estark | cd2e30c | 2016-08-12 06:51:15 | [diff] [blame] | 4209 | NavigationEntry* entry = controller_.GetVisibleEntry(); |
| 4210 | if (!entry) |
estark | aeda142 | 2016-05-10 02:31:12 | [diff] [blame] | 4211 | return; |
| 4212 | |
estark | aeda142 | 2016-05-10 02:31:12 | [diff] [blame] | 4213 | // TODO(estark): check that this does something reasonable for |
| 4214 | // about:blank and sandboxed origins. https://crbug.com/609527 |
estark | cd2e30c | 2016-08-12 06:51:15 | [diff] [blame] | 4215 | controller_.ssl_manager()->DidRunContentWithCertErrors( |
| 4216 | entry->GetURL().GetOrigin()); |
estark | 910b457 | 2015-12-09 20:55:41 | [diff] [blame] | 4217 | } |
| 4218 | |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4219 | void WebContentsImpl::OnDocumentLoadedInFrame(RenderFrameHostImpl* source) { |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 4220 | for (auto& observer : observers_) |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4221 | observer.DocumentLoadedInFrame(source); |
[email protected] | 724159a | 2010-12-30 01:11:18 | [diff] [blame] | 4222 | } |
| 4223 | |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4224 | void WebContentsImpl::OnDidFinishLoad(RenderFrameHostImpl* source, |
| 4225 | const GURL& url) { |
[email protected] | 8b3af1e | 2014-01-24 13:29:12 | [diff] [blame] | 4226 | GURL validated_url(url); |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4227 | source->GetProcess()->FilterURL(false, &validated_url); |
[email protected] | 028053d4 | 2014-03-05 22:20:37 | [diff] [blame] | 4228 | |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 4229 | for (auto& observer : observers_) |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4230 | observer.DidFinishLoad(source, validated_url); |
[email protected] | 1a55c5be | 2011-11-29 11:36:31 | [diff] [blame] | 4231 | } |
| 4232 | |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4233 | void WebContentsImpl::OnGoToEntryAtOffset(RenderViewHostImpl* source, |
| 4234 | int offset) { |
| 4235 | // All frames are allowed to navigate the global history. |
avi | 6ddfcae | 2015-06-30 15:50:57 | [diff] [blame] | 4236 | if (!delegate_ || delegate_->OnGoToEntryOffset(offset)) |
| 4237 | controller_.GoToOffset(offset); |
[email protected] | 21681395 | 2011-05-19 22:21:26 | [diff] [blame] | 4238 | } |
| 4239 | |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4240 | void WebContentsImpl::OnUpdateZoomLimits(RenderViewHostImpl* source, |
| 4241 | int minimum_percent, |
[email protected] | fce82322 | 2014-05-30 16:24:30 | [diff] [blame] | 4242 | int maximum_percent) { |
[email protected] | 21681395 | 2011-05-19 22:21:26 | [diff] [blame] | 4243 | minimum_zoom_percent_ = minimum_percent; |
| 4244 | maximum_zoom_percent_ = maximum_percent; |
[email protected] | 21681395 | 2011-05-19 22:21:26 | [diff] [blame] | 4245 | } |
| 4246 | |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4247 | void WebContentsImpl::OnPageScaleFactorChanged(RenderViewHostImpl* source, |
| 4248 | float page_scale_factor) { |
mcnee | 336ea2c | 2017-05-23 22:50:59 | [diff] [blame] | 4249 | #if !defined(OS_ANDROID) |
| 4250 | // While page scale factor is used on mobile, this PageScaleFactorIsOne logic |
| 4251 | // is only needed on desktop. |
mcnee | 432e47d | 2015-11-09 19:37:46 | [diff] [blame] | 4252 | bool is_one = page_scale_factor == 1.f; |
| 4253 | if (is_one != page_scale_factor_is_one_) { |
| 4254 | page_scale_factor_is_one_ = is_one; |
| 4255 | |
| 4256 | HostZoomMapImpl* host_zoom_map = |
| 4257 | static_cast<HostZoomMapImpl*>(HostZoomMap::GetForWebContents(this)); |
| 4258 | |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4259 | if (host_zoom_map) { |
mcnee | 432e47d | 2015-11-09 19:37:46 | [diff] [blame] | 4260 | host_zoom_map->SetPageScaleFactorIsOneForView( |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4261 | source->GetProcess()->GetID(), source->GetRoutingID(), |
mcnee | 432e47d | 2015-11-09 19:37:46 | [diff] [blame] | 4262 | page_scale_factor_is_one_); |
| 4263 | } |
| 4264 | } |
mcnee | 336ea2c | 2017-05-23 22:50:59 | [diff] [blame] | 4265 | #endif // !defined(OS_ANDROID) |
mcnee | 432e47d | 2015-11-09 19:37:46 | [diff] [blame] | 4266 | |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 4267 | for (auto& observer : observers_) |
| 4268 | observer.OnPageScaleFactorChanged(page_scale_factor); |
mcnee | 432e47d | 2015-11-09 19:37:46 | [diff] [blame] | 4269 | } |
| 4270 | |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4271 | void WebContentsImpl::OnEnumerateDirectory(RenderViewHostImpl* source, |
| 4272 | int request_id, |
[email protected] | 2dec8ec | 2013-02-07 19:20:34 | [diff] [blame] | 4273 | const base::FilePath& path) { |
[email protected] | e5f2de0 | 2012-07-20 22:15:43 | [diff] [blame] | 4274 | if (!delegate_) |
| 4275 | return; |
| 4276 | |
[email protected] | b953542 | 2012-02-09 01:47:59 | [diff] [blame] | 4277 | ChildProcessSecurityPolicyImpl* policy = |
| 4278 | ChildProcessSecurityPolicyImpl::GetInstance(); |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4279 | if (policy->CanReadFile(source->GetProcess()->GetID(), path)) { |
| 4280 | // TODO(nick): |this| param in the call below ought to be a RenderFrameHost. |
[email protected] | b953542 | 2012-02-09 01:47:59 | [diff] [blame] | 4281 | delegate_->EnumerateDirectory(this, request_id, path); |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4282 | } |
[email protected] | 3a29a6e | 2011-08-24 18:26:21 | [diff] [blame] | 4283 | } |
| 4284 | |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4285 | void WebContentsImpl::OnRegisterProtocolHandler(RenderFrameHostImpl* source, |
| 4286 | const std::string& protocol, |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 4287 | const GURL& url, |
[email protected] | fcf75d4 | 2013-12-03 20:11:26 | [diff] [blame] | 4288 | const base::string16& title, |
[email protected] | 3a3b75a | 2012-06-01 08:38:36 | [diff] [blame] | 4289 | bool user_gesture) { |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4290 | // TODO(nick): Should we consider |source| here or pass it to the delegate? |
| 4291 | // TODO(nick): Do we need to apply FilterURL to |url|? |
[email protected] | e5f2de0 | 2012-07-20 22:15:43 | [diff] [blame] | 4292 | if (!delegate_) |
| 4293 | return; |
| 4294 | |
[email protected] | b953542 | 2012-02-09 01:47:59 | [diff] [blame] | 4295 | ChildProcessSecurityPolicyImpl* policy = |
| 4296 | ChildProcessSecurityPolicyImpl::GetInstance(); |
[email protected] | 8f81063 | 2013-06-06 22:33:32 | [diff] [blame] | 4297 | if (policy->IsPseudoScheme(protocol)) |
[email protected] | b953542 | 2012-02-09 01:47:59 | [diff] [blame] | 4298 | return; |
[email protected] | 8f81063 | 2013-06-06 22:33:32 | [diff] [blame] | 4299 | |
[email protected] | c125e53 | 2014-05-10 20:39:06 | [diff] [blame] | 4300 | delegate_->RegisterProtocolHandler(this, protocol, url, user_gesture); |
[email protected] | 7d18902 | 2011-08-25 22:54:20 | [diff] [blame] | 4301 | } |
| 4302 | |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4303 | void WebContentsImpl::OnUnregisterProtocolHandler(RenderFrameHostImpl* source, |
| 4304 | const std::string& protocol, |
[email protected] | f5273e5 | 2014-07-14 16:30:20 | [diff] [blame] | 4305 | const GURL& url, |
| 4306 | bool user_gesture) { |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4307 | // TODO(nick): Should we consider |source| here or pass it to the delegate? |
| 4308 | // TODO(nick): Do we need to apply FilterURL to |url|? |
[email protected] | f5273e5 | 2014-07-14 16:30:20 | [diff] [blame] | 4309 | if (!delegate_) |
| 4310 | return; |
| 4311 | |
| 4312 | ChildProcessSecurityPolicyImpl* policy = |
| 4313 | ChildProcessSecurityPolicyImpl::GetInstance(); |
| 4314 | if (policy->IsPseudoScheme(protocol)) |
| 4315 | return; |
| 4316 | |
| 4317 | delegate_->UnregisterProtocolHandler(this, protocol, url, user_gesture); |
| 4318 | } |
| 4319 | |
kouhei | 40f03cb | 2015-09-24 07:47:01 | [diff] [blame] | 4320 | void WebContentsImpl::OnUpdatePageImportanceSignals( |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4321 | RenderFrameHostImpl* source, |
kouhei | 40f03cb | 2015-09-24 07:47:01 | [diff] [blame] | 4322 | const PageImportanceSignals& signals) { |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4323 | // TODO(nick, kouhei): Fix this for oopifs; currently all frames' state gets |
| 4324 | // written to this one field. |
kouhei | 40f03cb | 2015-09-24 07:47:01 | [diff] [blame] | 4325 | page_importance_signals_ = signals; |
| 4326 | } |
| 4327 | |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4328 | void WebContentsImpl::OnFindReply(RenderFrameHostImpl* source, |
| 4329 | int request_id, |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 4330 | int number_of_matches, |
| 4331 | const gfx::Rect& selection_rect, |
| 4332 | int active_match_ordinal, |
| 4333 | bool final_update) { |
paulmeyer | feafc2d | 2017-04-25 21:46:40 | [diff] [blame] | 4334 | if (active_match_ordinal > 0) |
| 4335 | SetFocusedFrame(source->frame_tree_node(), source->GetSiteInstance()); |
| 4336 | |
paulmeyer | c0b762b | 2016-04-13 11:55:17 | [diff] [blame] | 4337 | // Forward the find reply to the FindRequestManager, along with the |
| 4338 | // RenderFrameHost associated with the frame that the reply came from. |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4339 | GetOrCreateFindRequestManager()->OnFindReply( |
| 4340 | source, request_id, number_of_matches, selection_rect, |
| 4341 | active_match_ordinal, final_update); |
[email protected] | b888919c | 2011-09-02 00:32:16 | [diff] [blame] | 4342 | } |
| 4343 | |
mfomitchev | 2b8b066a | 2016-01-28 19:23:15 | [diff] [blame] | 4344 | #if defined(OS_ANDROID) |
[email protected] | 59363fc9 | 2012-09-05 03:46:31 | [diff] [blame] | 4345 | void WebContentsImpl::OnFindMatchRectsReply( |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4346 | RenderFrameHostImpl* source, |
[email protected] | 59363fc9 | 2012-09-05 03:46:31 | [diff] [blame] | 4347 | int version, |
| 4348 | const std::vector<gfx::RectF>& rects, |
| 4349 | const gfx::RectF& active_rect) { |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4350 | GetOrCreateFindRequestManager()->OnFindMatchRectsReply(source, version, rects, |
| 4351 | active_rect); |
[email protected] | 59363fc9 | 2012-09-05 03:46:31 | [diff] [blame] | 4352 | } |
[email protected] | 583418cc | 2013-01-17 14:01:10 | [diff] [blame] | 4353 | |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4354 | void WebContentsImpl::OnGetNearestFindResultReply(RenderFrameHostImpl* source, |
| 4355 | int request_id, |
paulmeyer | c8cb7cb | 2016-06-07 01:14:19 | [diff] [blame] | 4356 | float distance) { |
| 4357 | GetOrCreateFindRequestManager()->OnGetNearestFindResultReply( |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4358 | source, request_id, distance); |
paulmeyer | c8cb7cb | 2016-06-07 01:14:19 | [diff] [blame] | 4359 | } |
| 4360 | |
[email protected] | 1ff42797 | 2013-02-07 21:14:07 | [diff] [blame] | 4361 | void WebContentsImpl::OnOpenDateTimeDialog( |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4362 | RenderViewHostImpl* source, |
[email protected] | 1ff42797 | 2013-02-07 21:14:07 | [diff] [blame] | 4363 | const ViewHostMsg_DateTimeDialogValue_Params& value) { |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4364 | date_time_chooser_->ShowDialog( |
| 4365 | GetTopLevelNativeWindow(), source, value.dialog_type, value.dialog_value, |
| 4366 | value.minimum, value.maximum, value.step, value.suggestions); |
[email protected] | 583418cc | 2013-01-17 14:01:10 | [diff] [blame] | 4367 | } |
[email protected] | 59363fc9 | 2012-09-05 03:46:31 | [diff] [blame] | 4368 | #endif |
| 4369 | |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4370 | void WebContentsImpl::OnDomOperationResponse(RenderFrameHostImpl* source, |
| 4371 | const std::string& json_string) { |
| 4372 | // TODO(nick, lukasza): The notification below should probably be updated to |
| 4373 | // include |source|. |
avi | 60bd490 | 2015-09-23 20:39:24 | [diff] [blame] | 4374 | std::string json = json_string; |
| 4375 | NotificationService::current()->Notify(NOTIFICATION_DOM_OPERATION_RESPONSE, |
| 4376 | Source<WebContents>(this), |
| 4377 | Details<std::string>(&json)); |
[email protected] | cfa856d6 | 2014-02-22 07:58:40 | [diff] [blame] | 4378 | } |
| 4379 | |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4380 | void WebContentsImpl::OnAppCacheAccessed(RenderViewHostImpl* source, |
| 4381 | const GURL& manifest_url, |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 4382 | bool blocked_by_policy) { |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4383 | // TODO(nick): Should we consider |source| here? Should we call FilterURL on |
| 4384 | // |manifest_url|? |
| 4385 | |
[email protected] | 7fc4bbb | 2011-09-08 21:23:10 | [diff] [blame] | 4386 | // Notify observers about navigation. |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 4387 | for (auto& observer : observers_) |
| 4388 | observer.AppCacheAccessed(manifest_url, blocked_by_policy); |
[email protected] | 7fc4bbb | 2011-09-08 21:23:10 | [diff] [blame] | 4389 | } |
| 4390 | |
Joel Hockey | 85b379d | 2017-12-11 10:42:13 | [diff] [blame] | 4391 | void WebContentsImpl::OnColorChooserFactoryRequest( |
Joel Hockey | 163835a | 2017-12-20 11:51:57 | [diff] [blame] | 4392 | blink::mojom::ColorChooserFactoryRequest request) { |
Joel Hockey | 85b379d | 2017-12-11 10:42:13 | [diff] [blame] | 4393 | color_chooser_factory_bindings_.AddBinding(this, std::move(request)); |
| 4394 | } |
| 4395 | |
| 4396 | void WebContentsImpl::OpenColorChooser( |
Joel Hockey | 163835a | 2017-12-20 11:51:57 | [diff] [blame] | 4397 | blink::mojom::ColorChooserRequest chooser_request, |
| 4398 | blink::mojom::ColorChooserClientPtr client, |
[email protected] | 8ed1647 | 2014-04-11 19:02:48 | [diff] [blame] | 4399 | SkColor color, |
Joel Hockey | 163835a | 2017-12-20 11:51:57 | [diff] [blame] | 4400 | std::vector<blink::mojom::ColorSuggestionPtr> suggestions) { |
Joel Hockey | 85b379d | 2017-12-11 10:42:13 | [diff] [blame] | 4401 | content::ColorChooser* new_color_chooser = |
Ivan Kotenkov | 2c0d2bb3 | 2017-11-01 15:41:28 | [diff] [blame] | 4402 | delegate_ ? delegate_->OpenColorChooser(this, color, suggestions) |
| 4403 | : nullptr; |
[email protected] | 820957a | 2014-01-14 14:56:30 | [diff] [blame] | 4404 | if (!new_color_chooser) |
[email protected] | cb80545 | 2013-05-22 15:16:21 | [diff] [blame] | 4405 | return; |
[email protected] | 8ed1647 | 2014-04-11 19:02:48 | [diff] [blame] | 4406 | |
Joel Hockey | 85b379d | 2017-12-11 10:42:13 | [diff] [blame] | 4407 | color_chooser_.reset(); |
| 4408 | color_chooser_ = std::make_unique<ColorChooser>( |
| 4409 | new_color_chooser, std::move(chooser_request), std::move(client)); |
[email protected] | da854376 | 2012-03-20 08:52:20 | [diff] [blame] | 4410 | } |
| 4411 | |
brettw | 4b46108 | 2016-11-19 18:55:16 | [diff] [blame] | 4412 | #if BUILDFLAG(ENABLE_PLUGINS) |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4413 | void WebContentsImpl::OnPepperInstanceCreated(RenderFrameHostImpl* source, |
| 4414 | int32_t pp_instance) { |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 4415 | for (auto& observer : observers_) |
| 4416 | observer.PepperInstanceCreated(); |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4417 | pepper_playback_observer_->PepperInstanceCreated(source, pp_instance); |
emaxx | e70f5e1 | 2015-05-29 11:26:00 | [diff] [blame] | 4418 | } |
| 4419 | |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4420 | void WebContentsImpl::OnPepperInstanceDeleted(RenderFrameHostImpl* source, |
| 4421 | int32_t pp_instance) { |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 4422 | for (auto& observer : observers_) |
| 4423 | observer.PepperInstanceDeleted(); |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4424 | pepper_playback_observer_->PepperInstanceDeleted(source, pp_instance); |
emaxx | e70f5e1 | 2015-05-29 11:26:00 | [diff] [blame] | 4425 | } |
| 4426 | |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4427 | void WebContentsImpl::OnPepperPluginHung(RenderFrameHostImpl* source, |
| 4428 | int plugin_child_id, |
tommycli | e6633ca7 | 2014-10-31 00:40:42 | [diff] [blame] | 4429 | const base::FilePath& path, |
| 4430 | bool is_hung) { |
| 4431 | UMA_HISTOGRAM_COUNTS("Pepper.PluginHung", 1); |
| 4432 | |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 4433 | for (auto& observer : observers_) |
| 4434 | observer.PluginHungStatusChanged(plugin_child_id, path, is_hung); |
tommycli | e6633ca7 | 2014-10-31 00:40:42 | [diff] [blame] | 4435 | } |
| 4436 | |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4437 | void WebContentsImpl::OnPepperStartsPlayback(RenderFrameHostImpl* source, |
| 4438 | int32_t pp_instance) { |
| 4439 | pepper_playback_observer_->PepperStartsPlayback(source, pp_instance); |
zqzhang | 181047e6 | 2016-07-01 13:37:17 | [diff] [blame] | 4440 | } |
| 4441 | |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4442 | void WebContentsImpl::OnPepperStopsPlayback(RenderFrameHostImpl* source, |
| 4443 | int32_t pp_instance) { |
| 4444 | pepper_playback_observer_->PepperStopsPlayback(source, pp_instance); |
zqzhang | 181047e6 | 2016-07-01 13:37:17 | [diff] [blame] | 4445 | } |
| 4446 | |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4447 | void WebContentsImpl::OnPluginCrashed(RenderFrameHostImpl* source, |
| 4448 | const base::FilePath& plugin_path, |
tommycli | e6633ca7 | 2014-10-31 00:40:42 | [diff] [blame] | 4449 | base::ProcessId plugin_pid) { |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4450 | // TODO(nick): Eliminate the |plugin_pid| parameter, which can't be trusted, |
| 4451 | // and is only used by BlinkTestController. |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 4452 | for (auto& observer : observers_) |
| 4453 | observer.PluginCrashed(plugin_path, plugin_pid); |
tommycli | e6633ca7 | 2014-10-31 00:40:42 | [diff] [blame] | 4454 | } |
| 4455 | |
[email protected] | d8415ad9 | 2012-08-23 14:40:50 | [diff] [blame] | 4456 | void WebContentsImpl::OnRequestPpapiBrokerPermission( |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4457 | RenderViewHostImpl* source, |
| 4458 | int ppb_broker_route_id, |
[email protected] | d8415ad9 | 2012-08-23 14:40:50 | [diff] [blame] | 4459 | const GURL& url, |
[email protected] | 2dec8ec | 2013-02-07 19:20:34 | [diff] [blame] | 4460 | const base::FilePath& plugin_path) { |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4461 | base::Callback<void(bool)> permission_result_callback = base::Bind( |
| 4462 | &WebContentsImpl::SendPpapiBrokerPermissionResult, base::Unretained(this), |
| 4463 | source->GetProcess()->GetID(), ppb_broker_route_id); |
[email protected] | 8c8fc29 | 2012-11-23 18:57:16 | [diff] [blame] | 4464 | if (!delegate_) { |
Tommy Nyquist | 4b749d0 | 2018-03-20 21:46:29 | [diff] [blame] | 4465 | std::move(permission_result_callback).Run(false); |
[email protected] | 8c8fc29 | 2012-11-23 18:57:16 | [diff] [blame] | 4466 | return; |
[email protected] | d8415ad9 | 2012-08-23 14:40:50 | [diff] [blame] | 4467 | } |
| 4468 | |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4469 | if (!delegate_->RequestPpapiBrokerPermission(this, url, plugin_path, |
| 4470 | permission_result_callback)) { |
[email protected] | 8c8fc29 | 2012-11-23 18:57:16 | [diff] [blame] | 4471 | NOTIMPLEMENTED(); |
Tommy Nyquist | 4b749d0 | 2018-03-20 21:46:29 | [diff] [blame] | 4472 | std::move(permission_result_callback).Run(false); |
[email protected] | 8c8fc29 | 2012-11-23 18:57:16 | [diff] [blame] | 4473 | } |
[email protected] | d8415ad9 | 2012-08-23 14:40:50 | [diff] [blame] | 4474 | } |
| 4475 | |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4476 | void WebContentsImpl::SendPpapiBrokerPermissionResult(int process_id, |
| 4477 | int ppb_broker_route_id, |
| 4478 | bool result) { |
| 4479 | RenderProcessHost* rph = RenderProcessHost::FromID(process_id); |
| 4480 | if (rph) { |
| 4481 | // TODO(nick): Convert this from ViewMsg_ to a Ppapi msg, since it |
| 4482 | // is not routed to a RenderView. |
| 4483 | rph->Send( |
| 4484 | new ViewMsg_PpapiBrokerPermissionResult(ppb_broker_route_id, result)); |
| 4485 | } |
[email protected] | d8415ad9 | 2012-08-23 14:40:50 | [diff] [blame] | 4486 | } |
| 4487 | |
fsamuel | 833ee7c | 2015-02-13 23:40:40 | [diff] [blame] | 4488 | void WebContentsImpl::OnBrowserPluginMessage(RenderFrameHost* render_frame_host, |
| 4489 | const IPC::Message& message) { |
[email protected] | 7a846df | 2012-09-20 19:17:39 | [diff] [blame] | 4490 | CHECK(!browser_plugin_embedder_.get()); |
fsamuel | 60b4228 | 2015-03-10 03:29:14 | [diff] [blame] | 4491 | CreateBrowserPluginEmbedderIfNecessary(); |
fsamuel | 833ee7c | 2015-02-13 23:40:40 | [diff] [blame] | 4492 | browser_plugin_embedder_->OnMessageReceived(message, render_frame_host); |
[email protected] | 19be7a6 | 2012-10-01 23:03:37 | [diff] [blame] | 4493 | } |
brettw | 4b46108 | 2016-11-19 18:55:16 | [diff] [blame] | 4494 | #endif // BUILDFLAG(ENABLE_PLUGINS) |
[email protected] | 19be7a6 | 2012-10-01 23:03:37 | [diff] [blame] | 4495 | |
[email protected] | 795c2897 | 2012-12-06 06:13:39 | [diff] [blame] | 4496 | void WebContentsImpl::OnUpdateFaviconURL( |
lukasza | 178ff09 | 2017-06-07 23:39:50 | [diff] [blame] | 4497 | RenderFrameHostImpl* source, |
[email protected] | 795c2897 | 2012-12-06 06:13:39 | [diff] [blame] | 4498 | const std::vector<FaviconURL>& candidates) { |
lukasza | 178ff09 | 2017-06-07 23:39:50 | [diff] [blame] | 4499 | // Ignore favicons for non-main frame. |
| 4500 | if (source->GetParent()) { |
| 4501 | NOTREACHED(); |
| 4502 | return; |
| 4503 | } |
| 4504 | |
pkotwicz | f9bc2059 | 2015-04-21 18:57:06 | [diff] [blame] | 4505 | // We get updated favicon URLs after the page stops loading. If a cross-site |
| 4506 | // navigation occurs while a page is still loading, the initial page |
| 4507 | // may stop loading and send us updated favicon URLs after the navigation |
| 4508 | // for the new page has committed. |
lukasza | 178ff09 | 2017-06-07 23:39:50 | [diff] [blame] | 4509 | if (!source->IsCurrent()) |
pkotwicz | f9bc2059 | 2015-04-21 18:57:06 | [diff] [blame] | 4510 | return; |
| 4511 | |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 4512 | for (auto& observer : observers_) |
| 4513 | observer.DidUpdateFaviconURL(candidates); |
[email protected] | 795c2897 | 2012-12-06 06:13:39 | [diff] [blame] | 4514 | } |
| 4515 | |
qinmin | 72e8bd0 | 2016-10-21 19:35:37 | [diff] [blame] | 4516 | void WebContentsImpl::SetIsOverlayContent(bool is_overlay_content) { |
| 4517 | is_overlay_content_ = is_overlay_content; |
| 4518 | } |
| 4519 | |
nick | a0ac838 | 2016-12-15 23:59:23 | [diff] [blame] | 4520 | void WebContentsImpl::OnFirstVisuallyNonEmptyPaint(RenderViewHostImpl* source) { |
| 4521 | // TODO(nick): When this is ported to FrameHostMsg_, we should only listen if |
| 4522 | // |source| is the main frame. |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 4523 | for (auto& observer : observers_) |
| 4524 | observer.DidFirstVisuallyNonEmptyPaint(); |
yusufo | d41c5f9 | 2015-03-06 00:14:28 | [diff] [blame] | 4525 | |
peter | 90afaba | 2015-06-01 12:05:29 | [diff] [blame] | 4526 | did_first_visually_non_empty_paint_ = true; |
| 4527 | |
yusufo | d41c5f9 | 2015-03-06 00:14:28 | [diff] [blame] | 4528 | if (theme_color_ != last_sent_theme_color_) { |
| 4529 | // Theme color should have updated by now if there was one. |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 4530 | for (auto& observer : observers_) |
| 4531 | observer.DidChangeThemeColor(theme_color_); |
yusufo | d41c5f9 | 2015-03-06 00:14:28 | [diff] [blame] | 4532 | last_sent_theme_color_ = theme_color_; |
| 4533 | } |
[email protected] | 9f26807 | 2013-11-07 00:02:15 | [diff] [blame] | 4534 | } |
[email protected] | d9030b8 | 2013-07-19 08:26:06 | [diff] [blame] | 4535 | |
[email protected] | 17e286e | 2013-03-01 23:29:39 | [diff] [blame] | 4536 | void WebContentsImpl::NotifyBeforeFormRepostWarningShow() { |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 4537 | for (auto& observer : observers_) |
| 4538 | observer.BeforeFormRepostWarningShow(); |
[email protected] | 17e286e | 2013-03-01 23:29:39 | [diff] [blame] | 4539 | } |
| 4540 | |
[email protected] | ec6c05f | 2013-10-23 18:41:57 | [diff] [blame] | 4541 | void WebContentsImpl::ActivateAndShowRepostFormWarningDialog() { |
| 4542 | Activate(); |
| 4543 | if (delegate_) |
| 4544 | delegate_->ShowRepostFormWarningDialog(this); |
| 4545 | } |
| 4546 | |
[email protected] | b4c8401 | 2014-04-28 19:51:10 | [diff] [blame] | 4547 | bool WebContentsImpl::HasAccessedInitialDocument() { |
| 4548 | return has_accessed_initial_document_; |
| 4549 | } |
| 4550 | |
afakhry | 6f0c1ec2 | 2016-07-14 13:55:13 | [diff] [blame] | 4551 | void WebContentsImpl::UpdateTitleForEntry(NavigationEntry* entry, |
[email protected] | fcf75d4 | 2013-12-03 20:11:26 | [diff] [blame] | 4552 | const base::string16& title) { |
[email protected] | fcf75d4 | 2013-12-03 20:11:26 | [diff] [blame] | 4553 | base::string16 final_title; |
Avi Drissman | 9300221 | 2017-09-27 03:20:52 | [diff] [blame] | 4554 | base::TrimWhitespace(title, base::TRIM_ALL, &final_title); |
[email protected] | 420ae01 | 2009-04-24 05:16:32 | [diff] [blame] | 4555 | |
[email protected] | 987fc3a | 2011-05-26 14:18:09 | [diff] [blame] | 4556 | // If a page is created via window.open and never navigated, |
| 4557 | // there will be no navigation entry. In this situation, |
[email protected] | 73eb260 | 2012-02-09 19:50:55 | [diff] [blame] | 4558 | // |page_title_when_no_navigation_entry_| will be used for page title. |
[email protected] | 987fc3a | 2011-05-26 14:18:09 | [diff] [blame] | 4559 | if (entry) { |
[email protected] | 36fc039 | 2011-12-25 03:59:51 | [diff] [blame] | 4560 | if (final_title == entry->GetTitle()) |
afakhry | 6f0c1ec2 | 2016-07-14 13:55:13 | [diff] [blame] | 4561 | return; // Nothing changed, don't bother. |
[email protected] | 420ae01 | 2009-04-24 05:16:32 | [diff] [blame] | 4562 | |
[email protected] | 36fc039 | 2011-12-25 03:59:51 | [diff] [blame] | 4563 | entry->SetTitle(final_title); |
Avi Drissman | 9300221 | 2017-09-27 03:20:52 | [diff] [blame] | 4564 | |
| 4565 | // The title for display may differ from the title just set; grab it. |
| 4566 | final_title = entry->GetTitleForDisplay(); |
[email protected] | 987fc3a | 2011-05-26 14:18:09 | [diff] [blame] | 4567 | } else { |
| 4568 | if (page_title_when_no_navigation_entry_ == final_title) |
afakhry | 6f0c1ec2 | 2016-07-14 13:55:13 | [diff] [blame] | 4569 | return; // Nothing changed, don't bother. |
[email protected] | 987fc3a | 2011-05-26 14:18:09 | [diff] [blame] | 4570 | |
| 4571 | page_title_when_no_navigation_entry_ = final_title; |
| 4572 | } |
[email protected] | 420ae01 | 2009-04-24 05:16:32 | [diff] [blame] | 4573 | |
[email protected] | 420ae01 | 2009-04-24 05:16:32 | [diff] [blame] | 4574 | // Lastly, set the title for the view. |
[email protected] | 790e2fd | 2011-09-21 20:28:23 | [diff] [blame] | 4575 | view_->SetPageTitle(final_title); |
[email protected] | 420ae01 | 2009-04-24 05:16:32 | [diff] [blame] | 4576 | |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 4577 | for (auto& observer : observers_) |
Avi Drissman | 9300221 | 2017-09-27 03:20:52 | [diff] [blame] | 4578 | observer.TitleWasSet(entry); |
[email protected] | 6679890 | 2013-10-01 18:40:16 | [diff] [blame] | 4579 | |
afakhry | 6f0c1ec2 | 2016-07-14 13:55:13 | [diff] [blame] | 4580 | // Broadcast notifications when the UI should be updated. |
| 4581 | if (entry == controller_.GetEntryAtOffset(0)) |
| 4582 | NotifyNavigationStateChanged(INVALIDATE_TYPE_TITLE); |
[email protected] | 420ae01 | 2009-04-24 05:16:32 | [diff] [blame] | 4583 | } |
| 4584 | |
fdegans | a696e511 | 2015-04-17 01:57:59 | [diff] [blame] | 4585 | void WebContentsImpl::SendChangeLoadProgress() { |
[email protected] | 960b037 | 2014-05-19 18:01:00 | [diff] [blame] | 4586 | loading_last_progress_update_ = base::TimeTicks::Now(); |
[email protected] | 960b037 | 2014-05-19 18:01:00 | [diff] [blame] | 4587 | if (delegate_) |
fdegans | a696e511 | 2015-04-17 01:57:59 | [diff] [blame] | 4588 | delegate_->LoadProgressChanged(this, frame_tree_.load_progress()); |
[email protected] | 960b037 | 2014-05-19 18:01:00 | [diff] [blame] | 4589 | } |
| 4590 | |
| 4591 | void WebContentsImpl::ResetLoadProgressState() { |
fdegans | 1d1635516 | 2015-03-26 11:58:34 | [diff] [blame] | 4592 | frame_tree_.ResetLoadProgress(); |
[email protected] | 960b037 | 2014-05-19 18:01:00 | [diff] [blame] | 4593 | loading_weak_factory_.InvalidateWeakPtrs(); |
| 4594 | loading_last_progress_update_ = base::TimeTicks(); |
| 4595 | } |
| 4596 | |
clamy | 44e84ce | 2016-02-22 15:38:25 | [diff] [blame] | 4597 | // Notifies the RenderWidgetHost instance about the fact that the page is |
| 4598 | // loading, or done loading. |
| 4599 | void WebContentsImpl::LoadingStateChanged(bool to_different_document, |
| 4600 | bool due_to_interstitial, |
| 4601 | LoadNotificationDetails* details) { |
| 4602 | // Do not send notifications about loading changes in the FrameTree while the |
| 4603 | // interstitial page is pausing the throbber. |
creis | adca986 | 2017-06-16 19:12:11 | [diff] [blame] | 4604 | if (ShowingInterstitialPage() && interstitial_page_->pause_throbber() && |
clamy | 44e84ce | 2016-02-22 15:38:25 | [diff] [blame] | 4605 | !due_to_interstitial) { |
| 4606 | return; |
| 4607 | } |
| 4608 | |
| 4609 | bool is_loading = IsLoading(); |
| 4610 | |
| 4611 | if (!is_loading) { |
| 4612 | load_state_ = net::LoadStateWithParam(net::LOAD_STATE_IDLE, |
| 4613 | base::string16()); |
| 4614 | load_state_host_.clear(); |
| 4615 | upload_size_ = 0; |
| 4616 | upload_position_ = 0; |
| 4617 | } |
| 4618 | |
| 4619 | GetRenderManager()->SetIsLoading(is_loading); |
| 4620 | |
| 4621 | waiting_for_response_ = is_loading; |
| 4622 | is_load_to_different_document_ = to_different_document; |
| 4623 | |
| 4624 | if (delegate_) |
| 4625 | delegate_->LoadingStateChanged(this, to_different_document); |
| 4626 | NotifyNavigationStateChanged(INVALIDATE_TYPE_LOAD); |
| 4627 | |
| 4628 | std::string url = (details ? details->url.possibly_invalid_spec() : "NULL"); |
| 4629 | if (is_loading) { |
| 4630 | TRACE_EVENT_ASYNC_BEGIN2("browser,navigation", "WebContentsImpl Loading", |
| 4631 | this, "URL", url, "Main FrameTreeNode id", |
| 4632 | GetFrameTree()->root()->frame_tree_node_id()); |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 4633 | for (auto& observer : observers_) |
| 4634 | observer.DidStartLoading(); |
clamy | 44e84ce | 2016-02-22 15:38:25 | [diff] [blame] | 4635 | } else { |
| 4636 | TRACE_EVENT_ASYNC_END1("browser,navigation", "WebContentsImpl Loading", |
| 4637 | this, "URL", url); |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 4638 | for (auto& observer : observers_) |
| 4639 | observer.DidStopLoading(); |
clamy | 44e84ce | 2016-02-22 15:38:25 | [diff] [blame] | 4640 | } |
| 4641 | |
| 4642 | // TODO(avi): Remove. http://crbug.com/170921 |
| 4643 | int type = is_loading ? NOTIFICATION_LOAD_START : NOTIFICATION_LOAD_STOP; |
| 4644 | NotificationDetails det = NotificationService::NoDetails(); |
| 4645 | if (details) |
| 4646 | det = Details<LoadNotificationDetails>(details); |
| 4647 | NotificationService::current()->Notify( |
| 4648 | type, Source<NavigationController>(&controller_), det); |
| 4649 | } |
| 4650 | |
[email protected] | 02d7b6e | 2014-06-24 21:01:50 | [diff] [blame] | 4651 | void WebContentsImpl::NotifyViewSwapped(RenderViewHost* old_host, |
| 4652 | RenderViewHost* new_host) { |
[email protected] | 420ae01 | 2009-04-24 05:16:32 | [diff] [blame] | 4653 | // After sending out a swap notification, we need to send a disconnect |
| 4654 | // notification so that clients that pick up a pointer to |this| can NULL the |
| 4655 | // pointer. See Bug 1230284. |
| 4656 | notify_disconnection_ = true; |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 4657 | for (auto& observer : observers_) |
| 4658 | observer.RenderViewHostChanged(old_host, new_host); |
[email protected] | da7a718 | 2013-09-06 08:11:11 | [diff] [blame] | 4659 | |
[email protected] | 7a846df | 2012-09-20 19:17:39 | [diff] [blame] | 4660 | // Ensure that the associated embedder gets cleared after a RenderViewHost |
| 4661 | // gets swapped, so we don't reuse the same embedder next time a |
| 4662 | // RenderViewHost is attached to this WebContents. |
| 4663 | RemoveBrowserPluginEmbedder(); |
[email protected] | 420ae01 | 2009-04-24 05:16:32 | [diff] [blame] | 4664 | } |
| 4665 | |
[email protected] | 02d7b6e | 2014-06-24 21:01:50 | [diff] [blame] | 4666 | void WebContentsImpl::NotifyFrameSwapped(RenderFrameHost* old_host, |
| 4667 | RenderFrameHost* new_host) { |
Bo Liu | 168c864 | 2017-08-28 18:26:02 | [diff] [blame] | 4668 | #if defined(OS_ANDROID) |
Bo Liu | 16dd7b832 | 2018-05-02 21:19:50 | [diff] [blame] | 4669 | // Copy importance from |old_host| if |new_host| is a main frame. |
| 4670 | if (old_host && !new_host->GetParent()) { |
Bo Liu | 7c6779e9 | 2017-08-16 02:02:28 | [diff] [blame] | 4671 | static_cast<RenderFrameHostImpl*>(new_host) |
| 4672 | ->GetRenderWidgetHost() |
Bo Liu | 16dd7b832 | 2018-05-02 21:19:50 | [diff] [blame] | 4673 | ->SetImportance(static_cast<RenderFrameHostImpl*>(old_host) |
| 4674 | ->GetRenderWidgetHost() |
| 4675 | ->importance()); |
Bo Liu | 7c6779e9 | 2017-08-16 02:02:28 | [diff] [blame] | 4676 | } |
Bo Liu | 168c864 | 2017-08-28 18:26:02 | [diff] [blame] | 4677 | #endif |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 4678 | for (auto& observer : observers_) |
| 4679 | observer.RenderFrameHostChanged(old_host, new_host); |
[email protected] | 02d7b6e | 2014-06-24 21:01:50 | [diff] [blame] | 4680 | } |
| 4681 | |
[email protected] | da7a718 | 2013-09-06 08:11:11 | [diff] [blame] | 4682 | // TODO(avi): Remove this entire function because this notification is already |
| 4683 | // covered by two observer functions. http://crbug.com/170921 |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 4684 | void WebContentsImpl::NotifyDisconnected() { |
[email protected] | 420ae01 | 2009-04-24 05:16:32 | [diff] [blame] | 4685 | if (!notify_disconnection_) |
| 4686 | return; |
| 4687 | |
| 4688 | notify_disconnection_ = false; |
[email protected] | 8ff00d7 | 2012-10-23 19:12:21 | [diff] [blame] | 4689 | NotificationService::current()->Notify( |
| 4690 | NOTIFICATION_WEB_CONTENTS_DISCONNECTED, |
| 4691 | Source<WebContents>(this), |
| 4692 | NotificationService::NoDetails()); |
[email protected] | 420ae01 | 2009-04-24 05:16:32 | [diff] [blame] | 4693 | } |
| 4694 | |
[email protected] | cbb1ef59 | 2013-06-05 19:49:46 | [diff] [blame] | 4695 | void WebContentsImpl::NotifyNavigationEntryCommitted( |
| 4696 | const LoadCommittedDetails& load_details) { |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 4697 | for (auto& observer : observers_) |
| 4698 | observer.NavigationEntryCommitted(load_details); |
[email protected] | cbb1ef59 | 2013-06-05 19:49:46 | [diff] [blame] | 4699 | } |
| 4700 | |
Sam McNally | 5c087a3 | 2017-08-25 01:46:14 | [diff] [blame] | 4701 | void WebContentsImpl::NotifyNavigationEntryChanged( |
| 4702 | const EntryChangedDetails& change_details) { |
| 4703 | for (auto& observer : observers_) |
| 4704 | observer.NavigationEntryChanged(change_details); |
| 4705 | } |
| 4706 | |
| 4707 | void WebContentsImpl::NotifyNavigationListPruned( |
| 4708 | const PrunedDetails& pruned_details) { |
| 4709 | for (auto& observer : observers_) |
| 4710 | observer.NavigationListPruned(pruned_details); |
| 4711 | } |
| 4712 | |
Christian Dullweber | 1af31e6 | 2018-02-22 11:49:48 | [diff] [blame] | 4713 | void WebContentsImpl::NotifyNavigationEntriesDeleted() { |
| 4714 | for (auto& observer : observers_) |
| 4715 | observer.NavigationEntriesDeleted(); |
| 4716 | } |
| 4717 | |
rockot | f62002a | 2016-09-15 00:08:59 | [diff] [blame] | 4718 | void WebContentsImpl::OnAssociatedInterfaceRequest( |
| 4719 | RenderFrameHost* render_frame_host, |
| 4720 | const std::string& interface_name, |
| 4721 | mojo::ScopedInterfaceEndpointHandle handle) { |
| 4722 | auto it = binding_sets_.find(interface_name); |
| 4723 | if (it != binding_sets_.end()) |
| 4724 | it->second->OnRequestForFrame(render_frame_host, std::move(handle)); |
| 4725 | } |
| 4726 | |
Ben Goodger | 9e24929e | 2017-07-21 03:13:40 | [diff] [blame] | 4727 | void WebContentsImpl::OnInterfaceRequest( |
| 4728 | RenderFrameHost* render_frame_host, |
| 4729 | const std::string& interface_name, |
| 4730 | mojo::ScopedMessagePipeHandle* interface_pipe) { |
Joel Hockey | 85b379d | 2017-12-11 10:42:13 | [diff] [blame] | 4731 | registry_.TryBindInterface(interface_name, interface_pipe); |
Ben Goodger | 9e24929e | 2017-07-21 03:13:40 | [diff] [blame] | 4732 | for (auto& observer : observers_) { |
| 4733 | observer.OnInterfaceRequestFromFrame(render_frame_host, interface_name, |
| 4734 | interface_pipe); |
| 4735 | if (!interface_pipe->is_valid()) |
| 4736 | break; |
| 4737 | } |
| 4738 | } |
| 4739 | |
Nicolas Dossou-gbete | bcab247 | 2017-09-09 12:28:40 | [diff] [blame] | 4740 | void WebContentsImpl::OnDidBlockFramebust(const GURL& url) { |
| 4741 | if (delegate_) |
| 4742 | delegate_->OnDidBlockFramebust(this, url); |
| 4743 | } |
| 4744 | |
[email protected] | c31a8480 | 2014-04-03 15:55:49 | [diff] [blame] | 4745 | const GURL& WebContentsImpl::GetMainFrameLastCommittedURL() const { |
| 4746 | return GetLastCommittedURL(); |
| 4747 | } |
| 4748 | |
[email protected] | b849847b | 2013-12-10 21:57:58 | [diff] [blame] | 4749 | void WebContentsImpl::RenderFrameCreated(RenderFrameHost* render_frame_host) { |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 4750 | for (auto& observer : observers_) |
| 4751 | observer.RenderFrameCreated(render_frame_host); |
dmazzoni | f8a3104 | 2016-12-03 00:52:13 | [diff] [blame] | 4752 | UpdateAccessibilityModeOnFrame(render_frame_host); |
clamy | 91b7abf | 2016-03-24 15:17:45 | [diff] [blame] | 4753 | |
| 4754 | if (!render_frame_host->IsRenderFrameLive() || render_frame_host->GetParent()) |
| 4755 | return; |
| 4756 | |
| 4757 | NavigationEntry* entry = controller_.GetPendingEntry(); |
| 4758 | if (entry && entry->IsViewSourceMode()) { |
| 4759 | // Put the renderer in view source mode. |
| 4760 | render_frame_host->Send( |
| 4761 | new FrameMsg_EnableViewSourceMode(render_frame_host->GetRoutingID())); |
| 4762 | } |
[email protected] | b849847b | 2013-12-10 21:57:58 | [diff] [blame] | 4763 | } |
| 4764 | |
| 4765 | void WebContentsImpl::RenderFrameDeleted(RenderFrameHost* render_frame_host) { |
creis | 363889745 | 2017-05-09 22:07:50 | [diff] [blame] | 4766 | is_notifying_observers_ = true; |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 4767 | for (auto& observer : observers_) |
| 4768 | observer.RenderFrameDeleted(render_frame_host); |
creis | 363889745 | 2017-05-09 22:07:50 | [diff] [blame] | 4769 | is_notifying_observers_ = false; |
zqzhang | 7b6f4f0 | 2016-12-07 22:10:22 | [diff] [blame] | 4770 | #if BUILDFLAG(ENABLE_PLUGINS) |
| 4771 | pepper_playback_observer_->RenderFrameDeleted(render_frame_host); |
| 4772 | #endif |
[email protected] | b849847b | 2013-12-10 21:57:58 | [diff] [blame] | 4773 | } |
| 4774 | |
[email protected] | a09d53ce | 2014-01-31 00:46:42 | [diff] [blame] | 4775 | void WebContentsImpl::ShowContextMenu(RenderFrameHost* render_frame_host, |
| 4776 | const ContextMenuParams& params) { |
avi | e9fd872 | 2017-04-10 16:17:58 | [diff] [blame] | 4777 | // If a renderer fires off a second command to show a context menu before the |
| 4778 | // first context menu is closed, just ignore it. https://crbug.com/707534 |
ekaramad | f6750aa | 2017-06-06 18:29:42 | [diff] [blame] | 4779 | if (showing_context_menu_) |
avi | e9fd872 | 2017-04-10 16:17:58 | [diff] [blame] | 4780 | return; |
| 4781 | |
[email protected] | 077e704b | 2014-05-23 19:24:10 | [diff] [blame] | 4782 | ContextMenuParams context_menu_params(params); |
[email protected] | a09d53ce | 2014-01-31 00:46:42 | [diff] [blame] | 4783 | // Allow WebContentsDelegates to handle the context menu operation first. |
[email protected] | 077e704b | 2014-05-23 19:24:10 | [diff] [blame] | 4784 | if (delegate_ && delegate_->HandleContextMenu(context_menu_params)) |
[email protected] | a09d53ce | 2014-01-31 00:46:42 | [diff] [blame] | 4785 | return; |
| 4786 | |
[email protected] | 077e704b | 2014-05-23 19:24:10 | [diff] [blame] | 4787 | render_view_host_delegate_view_->ShowContextMenu(render_frame_host, |
| 4788 | context_menu_params); |
[email protected] | a09d53ce | 2014-01-31 00:46:42 | [diff] [blame] | 4789 | } |
| 4790 | |
avi | 777ff45 | 2017-02-09 19:04:48 | [diff] [blame] | 4791 | void WebContentsImpl::RunJavaScriptDialog(RenderFrameHost* render_frame_host, |
| 4792 | const base::string16& message, |
| 4793 | const base::string16& default_prompt, |
avi | 777ff45 | 2017-02-09 19:04:48 | [diff] [blame] | 4794 | JavaScriptDialogType dialog_type, |
| 4795 | IPC::Message* reply_msg) { |
Avi Drissman | 2ccbb40 | 2018-03-20 21:11:36 | [diff] [blame] | 4796 | // Ensure that if showing a dialog is the first thing that a page does, that |
| 4797 | // the contents of the previous page aren't shown behind it. This is required |
| 4798 | // because showing a dialog freezes the renderer, so no frames will be coming |
| 4799 | // from it. https://crbug.com/823353 |
| 4800 | auto* render_widget_host_impl = |
| 4801 | static_cast<RenderFrameHostImpl*>(render_frame_host) |
| 4802 | ->GetRenderWidgetHost(); |
| 4803 | if (render_widget_host_impl) |
| 4804 | render_widget_host_impl->ForceFirstFrameAfterNavigationTimeout(); |
| 4805 | |
avi | 0720b02e | 2017-06-13 03:22:13 | [diff] [blame] | 4806 | // Running a dialog causes an exit to webpage-initiated fullscreen. |
| 4807 | // http://crbug.com/728276 |
| 4808 | if (IsFullscreenForCurrentTab()) |
| 4809 | ExitFullscreen(true); |
| 4810 | |
Avi Drissman | e04d399 | 2017-10-05 15:11:36 | [diff] [blame] | 4811 | auto callback = |
| 4812 | base::BindOnce(&WebContentsImpl::OnDialogClosed, base::Unretained(this), |
| 4813 | render_frame_host->GetProcess()->GetID(), |
| 4814 | render_frame_host->GetRoutingID(), reply_msg); |
Pavel Feldman | 3c1842b | 2017-08-02 05:00:16 | [diff] [blame] | 4815 | |
Pavel Feldman | 3c1842b | 2017-08-02 05:00:16 | [diff] [blame] | 4816 | std::vector<protocol::PageHandler*> page_handlers = |
| 4817 | protocol::PageHandler::EnabledForWebContents(this); |
| 4818 | |
Pavel Feldman | fab3cb6 | 2017-10-05 01:02:01 | [diff] [blame] | 4819 | if (delegate_) |
| 4820 | dialog_manager_ = delegate_->GetJavaScriptDialogManager(this); |
| 4821 | |
| 4822 | // Suppress JavaScript dialogs when requested. Also suppress messages when |
| 4823 | // showing an interstitial as it's shown over the previous page and we don't |
| 4824 | // want the hidden page's dialogs to interfere with the interstitial. |
| 4825 | bool should_suppress = ShowingInterstitialPage() || |
| 4826 | (delegate_ && delegate_->ShouldSuppressDialogs(this)); |
Pavel Feldman | 1c587bc5 | 2018-04-04 21:16:05 | [diff] [blame] | 4827 | bool has_non_devtools_handlers = delegate_ && dialog_manager_; |
| 4828 | bool has_handlers = page_handlers.size() || has_non_devtools_handlers; |
Pavel Feldman | fab3cb6 | 2017-10-05 01:02:01 | [diff] [blame] | 4829 | bool suppress_this_message = should_suppress || !has_handlers; |
| 4830 | |
| 4831 | if (suppress_this_message) { |
Avi Drissman | e04d399 | 2017-10-05 15:11:36 | [diff] [blame] | 4832 | std::move(callback).Run(true, false, base::string16()); |
Pavel Feldman | 3c1842b | 2017-08-02 05:00:16 | [diff] [blame] | 4833 | return; |
| 4834 | } |
| 4835 | |
| 4836 | scoped_refptr<CloseDialogCallbackWrapper> wrapper = |
Avi Drissman | e04d399 | 2017-10-05 15:11:36 | [diff] [blame] | 4837 | new CloseDialogCallbackWrapper(std::move(callback)); |
Pavel Feldman | 3c1842b | 2017-08-02 05:00:16 | [diff] [blame] | 4838 | |
| 4839 | is_showing_javascript_dialog_ = true; |
| 4840 | |
| 4841 | for (auto* handler : page_handlers) { |
Avi Drissman | e04d399 | 2017-10-05 15:11:36 | [diff] [blame] | 4842 | handler->DidRunJavaScriptDialog( |
Avi Drissman | 2fefc4b | 2018-02-22 20:41:01 | [diff] [blame] | 4843 | render_frame_host->GetLastCommittedURL(), message, default_prompt, |
Pavel Feldman | 1c587bc5 | 2018-04-04 21:16:05 | [diff] [blame] | 4844 | dialog_type, has_non_devtools_handlers, |
Avi Drissman | e04d399 | 2017-10-05 15:11:36 | [diff] [blame] | 4845 | base::BindOnce(&CloseDialogCallbackWrapper::Run, wrapper, false)); |
Pavel Feldman | 3c1842b | 2017-08-02 05:00:16 | [diff] [blame] | 4846 | } |
| 4847 | |
| 4848 | if (dialog_manager_) { |
[email protected] | 87de04b0 | 2014-04-08 22:14:49 | [diff] [blame] | 4849 | dialog_manager_->RunJavaScriptDialog( |
Avi Drissman | 2fefc4b | 2018-02-22 20:41:01 | [diff] [blame] | 4850 | this, render_frame_host, dialog_type, message, default_prompt, |
Avi Drissman | e04d399 | 2017-10-05 15:11:36 | [diff] [blame] | 4851 | base::BindOnce(&CloseDialogCallbackWrapper::Run, wrapper, false), |
| 4852 | &suppress_this_message); |
[email protected] | 87de04b0 | 2014-04-08 22:14:49 | [diff] [blame] | 4853 | } |
| 4854 | |
| 4855 | if (suppress_this_message) { |
| 4856 | // If we are suppressing messages, just reply as if the user immediately |
| 4857 | // pressed "Cancel", passing true to |dialog_was_suppressed|. |
Avi Drissman | e04d399 | 2017-10-05 15:11:36 | [diff] [blame] | 4858 | wrapper->Run(true, false, base::string16()); |
[email protected] | 87de04b0 | 2014-04-08 22:14:49 | [diff] [blame] | 4859 | } |
[email protected] | 87de04b0 | 2014-04-08 22:14:49 | [diff] [blame] | 4860 | } |
| 4861 | |
| 4862 | void WebContentsImpl::RunBeforeUnloadConfirm( |
[email protected] | 39f2f925 | 2014-05-03 00:54:01 | [diff] [blame] | 4863 | RenderFrameHost* render_frame_host, |
[email protected] | 87de04b0 | 2014-04-08 22:14:49 | [diff] [blame] | 4864 | bool is_reload, |
| 4865 | IPC::Message* reply_msg) { |
Avi Drissman | 2ccbb40 | 2018-03-20 21:11:36 | [diff] [blame] | 4866 | // Ensure that if showing a dialog is the first thing that a page does, that |
| 4867 | // the contents of the previous page aren't shown behind it. This is required |
| 4868 | // because showing a dialog freezes the renderer, so no frames will be coming |
| 4869 | // from it. https://crbug.com/823353 |
| 4870 | auto* render_widget_host_impl = |
| 4871 | static_cast<RenderFrameHostImpl*>(render_frame_host) |
| 4872 | ->GetRenderWidgetHost(); |
| 4873 | if (render_widget_host_impl) |
| 4874 | render_widget_host_impl->ForceFirstFrameAfterNavigationTimeout(); |
| 4875 | |
avi | 0720b02e | 2017-06-13 03:22:13 | [diff] [blame] | 4876 | // Running a dialog causes an exit to webpage-initiated fullscreen. |
| 4877 | // http://crbug.com/728276 |
| 4878 | if (IsFullscreenForCurrentTab()) |
| 4879 | ExitFullscreen(true); |
| 4880 | |
[email protected] | 39f2f925 | 2014-05-03 00:54:01 | [diff] [blame] | 4881 | RenderFrameHostImpl* rfhi = |
| 4882 | static_cast<RenderFrameHostImpl*>(render_frame_host); |
[email protected] | 87de04b0 | 2014-04-08 22:14:49 | [diff] [blame] | 4883 | if (delegate_) |
| 4884 | delegate_->WillRunBeforeUnloadConfirm(); |
| 4885 | |
Avi Drissman | e04d399 | 2017-10-05 15:11:36 | [diff] [blame] | 4886 | auto callback = |
| 4887 | base::BindOnce(&WebContentsImpl::OnDialogClosed, base::Unretained(this), |
| 4888 | render_frame_host->GetProcess()->GetID(), |
| 4889 | render_frame_host->GetRoutingID(), reply_msg); |
Pavel Feldman | 3c1842b | 2017-08-02 05:00:16 | [diff] [blame] | 4890 | |
Pavel Feldman | 3c1842b | 2017-08-02 05:00:16 | [diff] [blame] | 4891 | std::vector<protocol::PageHandler*> page_handlers = |
| 4892 | protocol::PageHandler::EnabledForWebContents(this); |
| 4893 | |
Pavel Feldman | fab3cb6 | 2017-10-05 01:02:01 | [diff] [blame] | 4894 | if (delegate_) |
| 4895 | dialog_manager_ = delegate_->GetJavaScriptDialogManager(this); |
| 4896 | |
| 4897 | bool should_suppress = ShowingInterstitialPage() || !rfhi->is_active() || |
| 4898 | (delegate_ && delegate_->ShouldSuppressDialogs(this)); |
Pavel Feldman | 1c587bc5 | 2018-04-04 21:16:05 | [diff] [blame] | 4899 | bool has_non_devtools_handlers = delegate_ && dialog_manager_; |
| 4900 | bool has_handlers = page_handlers.size() || has_non_devtools_handlers; |
Pavel Feldman | fab3cb6 | 2017-10-05 01:02:01 | [diff] [blame] | 4901 | if (should_suppress || !has_handlers) { |
Avi Drissman | e04d399 | 2017-10-05 15:11:36 | [diff] [blame] | 4902 | std::move(callback).Run(false, true, base::string16()); |
[email protected] | 87de04b0 | 2014-04-08 22:14:49 | [diff] [blame] | 4903 | return; |
| 4904 | } |
| 4905 | |
| 4906 | is_showing_before_unload_dialog_ = true; |
Pavel Feldman | 3c1842b | 2017-08-02 05:00:16 | [diff] [blame] | 4907 | |
| 4908 | scoped_refptr<CloseDialogCallbackWrapper> wrapper = |
Avi Drissman | e04d399 | 2017-10-05 15:11:36 | [diff] [blame] | 4909 | new CloseDialogCallbackWrapper(std::move(callback)); |
Pavel Feldman | 3c1842b | 2017-08-02 05:00:16 | [diff] [blame] | 4910 | |
| 4911 | GURL frame_url = rfhi->GetLastCommittedURL(); |
| 4912 | for (auto* handler : page_handlers) { |
Avi Drissman | e04d399 | 2017-10-05 15:11:36 | [diff] [blame] | 4913 | handler->DidRunBeforeUnloadConfirm( |
Pavel Feldman | 1c587bc5 | 2018-04-04 21:16:05 | [diff] [blame] | 4914 | frame_url, has_non_devtools_handlers, |
Avi Drissman | e04d399 | 2017-10-05 15:11:36 | [diff] [blame] | 4915 | base::BindOnce(&CloseDialogCallbackWrapper::Run, wrapper, false)); |
Pavel Feldman | 3c1842b | 2017-08-02 05:00:16 | [diff] [blame] | 4916 | } |
| 4917 | |
| 4918 | if (dialog_manager_) { |
Avi Drissman | e04d399 | 2017-10-05 15:11:36 | [diff] [blame] | 4919 | dialog_manager_->RunBeforeUnloadDialog( |
Avi Drissman | ff9ed75 | 2017-11-28 21:18:12 | [diff] [blame] | 4920 | this, render_frame_host, is_reload, |
Avi Drissman | e04d399 | 2017-10-05 15:11:36 | [diff] [blame] | 4921 | base::BindOnce(&CloseDialogCallbackWrapper::Run, wrapper, false)); |
Pavel Feldman | 3c1842b | 2017-08-02 05:00:16 | [diff] [blame] | 4922 | } |
[email protected] | 87de04b0 | 2014-04-08 22:14:49 | [diff] [blame] | 4923 | } |
| 4924 | |
nasko | ada75b2 | 2016-06-11 16:09:46 | [diff] [blame] | 4925 | void WebContentsImpl::RunFileChooser(RenderFrameHost* render_frame_host, |
| 4926 | const FileChooserParams& params) { |
| 4927 | if (delegate_) |
| 4928 | delegate_->RunFileChooser(render_frame_host, params); |
| 4929 | } |
| 4930 | |
[email protected] | a86c0e96 | 2013-12-17 17:10:39 | [diff] [blame] | 4931 | WebContents* WebContentsImpl::GetAsWebContents() { |
| 4932 | return this; |
| 4933 | } |
| 4934 | |
mcnee | 336ea2c | 2017-05-23 22:50:59 | [diff] [blame] | 4935 | #if !defined(OS_ANDROID) |
wjmaclean | 6495190 | 2016-04-29 20:59:12 | [diff] [blame] | 4936 | double WebContentsImpl::GetPendingPageZoomLevel() { |
| 4937 | NavigationEntry* pending_entry = GetController().GetPendingEntry(); |
| 4938 | if (!pending_entry) |
| 4939 | return HostZoomMap::GetZoomLevel(this); |
| 4940 | |
| 4941 | GURL url = pending_entry->GetURL(); |
| 4942 | return HostZoomMap::GetForWebContents(this)->GetZoomLevelForHostAndScheme( |
| 4943 | url.scheme(), net::GetHostOrSpecFromURL(url)); |
| 4944 | } |
mcnee | 336ea2c | 2017-05-23 22:50:59 | [diff] [blame] | 4945 | #endif // !defined(OS_ANDROID) |
wjmaclean | 6495190 | 2016-04-29 20:59:12 | [diff] [blame] | 4946 | |
qinmin | 72e8bd0 | 2016-10-21 19:35:37 | [diff] [blame] | 4947 | bool WebContentsImpl::HideDownloadUI() const { |
| 4948 | return is_overlay_content_; |
| 4949 | } |
| 4950 | |
mlamouri | 5cd9ae8 | 2017-02-18 11:05:09 | [diff] [blame] | 4951 | bool WebContentsImpl::HasPersistentVideo() const { |
| 4952 | return has_persistent_video_; |
| 4953 | } |
| 4954 | |
Alex Moshchuk | 27caae8 | 2017-09-11 23:11:18 | [diff] [blame] | 4955 | RenderFrameHost* WebContentsImpl::GetPendingMainFrame() { |
clamy | 610c63b3 | 2017-12-22 15:05:18 | [diff] [blame] | 4956 | return GetRenderManager()->speculative_frame_host(); |
Alex Moshchuk | 27caae8 | 2017-09-11 23:11:18 | [diff] [blame] | 4957 | } |
| 4958 | |
mlamouri | e52c1b54 | 2017-02-23 14:57:50 | [diff] [blame] | 4959 | bool WebContentsImpl::HasActiveEffectivelyFullscreenVideo() const { |
| 4960 | return media_web_contents_observer_->HasActiveEffectivelyFullscreenVideo(); |
| 4961 | } |
| 4962 | |
François Beaufort | ad6c523 | 2018-02-26 11:00:44 | [diff] [blame] | 4963 | bool WebContentsImpl::IsPictureInPictureAllowedForFullscreenVideo() const { |
| 4964 | return media_web_contents_observer_ |
| 4965 | ->IsPictureInPictureAllowedForFullscreenVideo(); |
| 4966 | } |
| 4967 | |
ekaramad | a110f64 | 2016-12-21 19:47:28 | [diff] [blame] | 4968 | bool WebContentsImpl::IsFocusedElementEditable() { |
| 4969 | RenderFrameHostImpl* frame = GetFocusedFrame(); |
| 4970 | return frame && frame->has_focused_editable_element(); |
| 4971 | } |
| 4972 | |
ekaramad | f6750aa | 2017-06-06 18:29:42 | [diff] [blame] | 4973 | bool WebContentsImpl::IsShowingContextMenu() const { |
| 4974 | return showing_context_menu_; |
| 4975 | } |
| 4976 | |
| 4977 | void WebContentsImpl::SetShowingContextMenu(bool showing) { |
| 4978 | DCHECK_NE(showing_context_menu_, showing); |
| 4979 | showing_context_menu_ = showing; |
| 4980 | |
| 4981 | if (auto* view = GetRenderWidgetHostView()) { |
| 4982 | // Notify the main frame's RWHV to run the platform-specific code, if any. |
| 4983 | static_cast<RenderWidgetHostViewBase*>(view)->SetShowingContextMenu( |
| 4984 | showing); |
| 4985 | } |
| 4986 | } |
| 4987 | |
ekaramad | a110f64 | 2016-12-21 19:47:28 | [diff] [blame] | 4988 | void WebContentsImpl::ClearFocusedElement() { |
| 4989 | if (auto* frame = GetFocusedFrame()) |
| 4990 | frame->ClearFocusedElement(); |
| 4991 | } |
| 4992 | |
[email protected] | 7912e82 | 2014-04-16 02:37:03 | [diff] [blame] | 4993 | bool WebContentsImpl::IsNeverVisible() { |
| 4994 | if (!delegate_) |
| 4995 | return false; |
| 4996 | return delegate_->IsNeverVisible(this); |
| 4997 | } |
| 4998 | |
[email protected] | 5a3bdf5 | 2012-05-24 15:12:57 | [diff] [blame] | 4999 | RenderViewHostDelegateView* WebContentsImpl::GetDelegateView() { |
| 5000 | return render_view_host_delegate_view_; |
[email protected] | 420ae01 | 2009-04-24 05:16:32 | [diff] [blame] | 5001 | } |
| 5002 | |
[email protected] | 8ff00d7 | 2012-10-23 19:12:21 | [diff] [blame] | 5003 | RendererPreferences WebContentsImpl::GetRendererPrefs( |
| 5004 | BrowserContext* browser_context) const { |
[email protected] | 840b151 | 2009-07-21 16:53:46 | [diff] [blame] | 5005 | return renderer_preferences_; |
[email protected] | 80d96fa | 2009-06-10 22:34:51 | [diff] [blame] | 5006 | } |
| 5007 | |
[email protected] | 7a846df | 2012-09-20 19:17:39 | [diff] [blame] | 5008 | void WebContentsImpl::RemoveBrowserPluginEmbedder() { |
[email protected] | 59383c78 | 2013-04-17 16:43:27 | [diff] [blame] | 5009 | if (browser_plugin_embedder_) |
[email protected] | 7a846df | 2012-09-20 19:17:39 | [diff] [blame] | 5010 | browser_plugin_embedder_.reset(); |
| 5011 | } |
| 5012 | |
avallee | 0206f78 | 2016-07-28 18:55:33 | [diff] [blame] | 5013 | WebContentsImpl* WebContentsImpl::GetOuterWebContents() { |
lfg | 60123369 | 2017-03-06 22:45:44 | [diff] [blame] | 5014 | if (GuestMode::IsCrossProcessFrameGuest(this)) |
| 5015 | return node_.outer_web_contents(); |
ekaramad | 1beabecc | 2016-09-23 20:18:17 | [diff] [blame] | 5016 | |
| 5017 | if (browser_plugin_guest_) |
| 5018 | return browser_plugin_guest_->embedder_web_contents(); |
| 5019 | |
avallee | 0206f78 | 2016-07-28 18:55:33 | [diff] [blame] | 5020 | return nullptr; |
| 5021 | } |
| 5022 | |
| 5023 | WebContentsImpl* WebContentsImpl::GetFocusedWebContents() { |
lfg | 60123369 | 2017-03-06 22:45:44 | [diff] [blame] | 5024 | return GetOutermostWebContents()->node_.focused_web_contents(); |
avallee | 0206f78 | 2016-07-28 18:55:33 | [diff] [blame] | 5025 | } |
| 5026 | |
avallee | 9993fca | 2016-11-17 06:16:50 | [diff] [blame] | 5027 | bool WebContentsImpl::ContainsOrIsFocusedWebContents() { |
| 5028 | for (WebContentsImpl* focused_contents = GetFocusedWebContents(); |
| 5029 | focused_contents; |
| 5030 | focused_contents = focused_contents->GetOuterWebContents()) { |
| 5031 | if (focused_contents == this) |
| 5032 | return true; |
| 5033 | } |
| 5034 | |
| 5035 | return false; |
| 5036 | } |
| 5037 | |
avallee | 0206f78 | 2016-07-28 18:55:33 | [diff] [blame] | 5038 | WebContentsImpl* WebContentsImpl::GetOutermostWebContents() { |
| 5039 | WebContentsImpl* root = this; |
| 5040 | while (root->GetOuterWebContents()) |
| 5041 | root = root->GetOuterWebContents(); |
| 5042 | return root; |
| 5043 | } |
| 5044 | |
avallee | d68cdd1 | 2017-06-21 22:07:27 | [diff] [blame] | 5045 | void WebContentsImpl::FocusOuterAttachmentFrameChain() { |
| 5046 | WebContentsImpl* outer_contents = GetOuterWebContents(); |
| 5047 | if (!outer_contents) |
| 5048 | return; |
| 5049 | |
| 5050 | FrameTreeNode* outer_node = |
| 5051 | FrameTreeNode::GloballyFindByID(GetOuterDelegateFrameTreeNodeId()); |
| 5052 | outer_contents->frame_tree_.SetFocusedFrame(outer_node, nullptr); |
| 5053 | |
| 5054 | // For a browser initiated focus change, let embedding renderer know of the |
| 5055 | // change. Otherwise, if the currently focused element is just across a |
| 5056 | // process boundary in focus order, it will not be possible to move across |
| 5057 | // that boundary. This is because the target element will already be focused |
| 5058 | // (that renderer was not notified) and drop the event. |
| 5059 | if (GetRenderManager()->GetProxyToOuterDelegate()) |
| 5060 | GetRenderManager()->GetProxyToOuterDelegate()->SetFocusedFrame(); |
| 5061 | |
| 5062 | outer_contents->FocusOuterAttachmentFrameChain(); |
| 5063 | } |
| 5064 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 5065 | void WebContentsImpl::RenderViewCreated(RenderViewHost* render_view_host) { |
[email protected] | 86f98a2 | 2013-03-20 14:35:00 | [diff] [blame] | 5066 | if (delegate_) |
[email protected] | e85165c64 | 2014-06-10 14:34:31 | [diff] [blame] | 5067 | view_->SetOverscrollControllerEnabled(CanOverscrollContent()); |
[email protected] | a6b73c6 | 2013-02-11 23:05:08 | [diff] [blame] | 5068 | |
[email protected] | 8ff00d7 | 2012-10-23 19:12:21 | [diff] [blame] | 5069 | NotificationService::current()->Notify( |
| 5070 | NOTIFICATION_WEB_CONTENTS_RENDER_VIEW_HOST_CREATED, |
| 5071 | Source<WebContents>(this), |
| 5072 | Details<RenderViewHost>(render_view_host)); |
[email protected] | 420ae01 | 2009-04-24 05:16:32 | [diff] [blame] | 5073 | |
[email protected] | 60780f41 | 2013-02-25 16:34:10 | [diff] [blame] | 5074 | view_->RenderViewCreated(render_view_host); |
[email protected] | 11f764bb | 2011-05-25 19:45:26 | [diff] [blame] | 5075 | |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 5076 | for (auto& observer : observers_) |
| 5077 | observer.RenderViewCreated(render_view_host); |
Joel Einbinder | 848001c | 2017-09-19 21:39:31 | [diff] [blame] | 5078 | if (delegate_) |
| 5079 | RenderFrameDevToolsAgentHost::WebContentsCreated(this); |
[email protected] | 420ae01 | 2009-04-24 05:16:32 | [diff] [blame] | 5080 | } |
| 5081 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 5082 | void WebContentsImpl::RenderViewReady(RenderViewHost* rvh) { |
[email protected] | 151a63d | 2011-12-20 22:32:52 | [diff] [blame] | 5083 | if (rvh != GetRenderViewHost()) { |
[email protected] | 420ae01 | 2009-04-24 05:16:32 | [diff] [blame] | 5084 | // Don't notify the world, since this came from a renderer in the |
| 5085 | // background. |
| 5086 | return; |
| 5087 | } |
| 5088 | |
dmazzoni | 6211145 | 2017-04-28 23:46:55 | [diff] [blame] | 5089 | RenderWidgetHostViewBase* rwhv = |
| 5090 | static_cast<RenderWidgetHostViewBase*>(GetRenderWidgetHostView()); |
| 5091 | if (rwhv) |
| 5092 | rwhv->SetMainFrameAXTreeID(GetMainFrame()->GetAXTreeID()); |
| 5093 | |
[email protected] | da7a718 | 2013-09-06 08:11:11 | [diff] [blame] | 5094 | notify_disconnection_ = true; |
[email protected] | da7a718 | 2013-09-06 08:11:11 | [diff] [blame] | 5095 | |
[email protected] | be1f56ab | 2011-12-22 06:55:31 | [diff] [blame] | 5096 | bool was_crashed = IsCrashed(); |
[email protected] | 443b80e | 2010-12-14 00:42:23 | [diff] [blame] | 5097 | SetIsCrashed(base::TERMINATION_STATUS_STILL_RUNNING, 0); |
[email protected] | 9d8a464 | 2009-07-29 17:25:30 | [diff] [blame] | 5098 | |
| 5099 | // Restore the focus to the tab (otherwise the focus will be on the top |
| 5100 | // window). |
[email protected] | 484ae591 | 2010-09-29 19:16:14 | [diff] [blame] | 5101 | if (was_crashed && !FocusLocationBarByDefault() && |
| 5102 | (!delegate_ || delegate_->ShouldFocusPageAfterCrash())) { |
[email protected] | f3615f0 | 2013-02-26 06:09:06 | [diff] [blame] | 5103 | view_->Focus(); |
[email protected] | 484ae591 | 2010-09-29 19:16:14 | [diff] [blame] | 5104 | } |
[email protected] | 32ded221 | 2011-11-10 18:51:43 | [diff] [blame] | 5105 | |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 5106 | for (auto& observer : observers_) |
| 5107 | observer.RenderViewReady(); |
[email protected] | 420ae01 | 2009-04-24 05:16:32 | [diff] [blame] | 5108 | } |
| 5109 | |
[email protected] | ec6a7eb | 2013-04-22 17:34:22 | [diff] [blame] | 5110 | void WebContentsImpl::RenderViewTerminated(RenderViewHost* rvh, |
| 5111 | base::TerminationStatus status, |
| 5112 | int error_code) { |
[email protected] | 151a63d | 2011-12-20 22:32:52 | [diff] [blame] | 5113 | if (rvh != GetRenderViewHost()) { |
[email protected] | 420ae01 | 2009-04-24 05:16:32 | [diff] [blame] | 5114 | // The pending page's RenderViewHost is gone. |
| 5115 | return; |
| 5116 | } |
| 5117 | |
[email protected] | 2fcdcc3 | 2014-03-05 02:14:07 | [diff] [blame] | 5118 | // Ensure fullscreen mode is exited in the |delegate_| since a crashed |
| 5119 | // renderer may not have made a clean exit. |
alexmos | 5dd617d | 2016-06-07 04:21:15 | [diff] [blame] | 5120 | if (IsFullscreenForCurrentTab()) |
bokan | ece34a8 | 2016-01-28 19:49:46 | [diff] [blame] | 5121 | ExitFullscreenMode(false); |
[email protected] | 2fcdcc3 | 2014-03-05 02:14:07 | [diff] [blame] | 5122 | |
[email protected] | 698191dc | 2014-02-25 01:06:13 | [diff] [blame] | 5123 | // Cancel any visible dialogs so they are not left dangling over the sad tab. |
creis | 89a0f78 | 2015-05-27 16:13:17 | [diff] [blame] | 5124 | CancelActiveAndPendingDialogs(); |
[email protected] | 698191dc | 2014-02-25 01:06:13 | [diff] [blame] | 5125 | |
dalecurtis | 3d1e130 | 2017-02-20 22:33:25 | [diff] [blame] | 5126 | audio_stream_monitor_.RenderProcessGone(rvh->GetProcess()->GetID()); |
| 5127 | |
[email protected] | 960b037 | 2014-05-19 18:01:00 | [diff] [blame] | 5128 | // Reset the loading progress. TODO(avi): What does it mean to have a |
| 5129 | // "renderer crash" when there is more than one renderer process serving a |
| 5130 | // webpage? Once this function is called at a more granular frame level, we |
| 5131 | // probably will need to more granularly reset the state here. |
| 5132 | ResetLoadProgressState(); |
clamy | 44e84ce | 2016-02-22 15:38:25 | [diff] [blame] | 5133 | NotifyDisconnected(); |
| 5134 | SetIsCrashed(status, error_code); |
[email protected] | 960b037 | 2014-05-19 18:01:00 | [diff] [blame] | 5135 | |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 5136 | for (auto& observer : observers_) |
| 5137 | observer.RenderProcessGone(GetCrashedStatus()); |
[email protected] | 420ae01 | 2009-04-24 05:16:32 | [diff] [blame] | 5138 | } |
| 5139 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 5140 | void WebContentsImpl::RenderViewDeleted(RenderViewHost* rvh) { |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 5141 | for (auto& observer : observers_) |
| 5142 | observer.RenderViewDeleted(rvh); |
[email protected] | 2e4633c | 2009-07-09 16:58:06 | [diff] [blame] | 5143 | } |
| 5144 | |
sky | 8b00392d | 2015-01-10 00:30:28 | [diff] [blame] | 5145 | void WebContentsImpl::UpdateTargetURL(RenderViewHost* render_view_host, |
| 5146 | const GURL& url) { |
| 5147 | if (fullscreen_widget_routing_id_ != MSG_ROUTING_NONE) { |
Lukasz Anforowicz | fd70714 | 2018-02-07 19:46:13 | [diff] [blame] | 5148 | // If we're in flash fullscreen (i.e. Pepper plugin fullscreen) only update |
| 5149 | // the url if it's from the fullscreen renderer. |
sky | 8b00392d | 2015-01-10 00:30:28 | [diff] [blame] | 5150 | RenderWidgetHostView* fs = GetFullscreenRenderWidgetHostView(); |
avi | f9ab5d94 | 2015-10-15 14:05:44 | [diff] [blame] | 5151 | if (fs && fs->GetRenderWidgetHost() != render_view_host->GetWidget()) |
sky | 8b00392d | 2015-01-10 00:30:28 | [diff] [blame] | 5152 | return; |
| 5153 | } |
Lukasz Anforowicz | fd70714 | 2018-02-07 19:46:13 | [diff] [blame] | 5154 | |
| 5155 | // In case of racey updates from multiple RenderViewHosts, the last URL should |
| 5156 | // be shown - see also some discussion in https://crbug.com/807776. |
| 5157 | if (!url.is_valid() && render_view_host != view_that_set_last_target_url_) |
| 5158 | return; |
| 5159 | view_that_set_last_target_url_ = url.is_valid() ? render_view_host : nullptr; |
| 5160 | |
[email protected] | 6934a70 | 2011-12-20 00:04:51 | [diff] [blame] | 5161 | if (delegate_) |
avi | 450ce00e | 2014-09-24 01:58:52 | [diff] [blame] | 5162 | delegate_->UpdateTargetURL(this, url); |
[email protected] | 420ae01 | 2009-04-24 05:16:32 | [diff] [blame] | 5163 | } |
| 5164 | |
Lukasz Anforowicz | fd70714 | 2018-02-07 19:46:13 | [diff] [blame] | 5165 | void WebContentsImpl::ClearTargetURL() { |
| 5166 | view_that_set_last_target_url_ = nullptr; |
| 5167 | if (delegate_) |
| 5168 | delegate_->UpdateTargetURL(this, GURL()); |
| 5169 | } |
| 5170 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 5171 | void WebContentsImpl::Close(RenderViewHost* rvh) { |
[email protected] | 60780f41 | 2013-02-25 16:34:10 | [diff] [blame] | 5172 | #if defined(OS_MACOSX) |
[email protected] | 0770730 | 2009-11-06 00:50:29 | [diff] [blame] | 5173 | // The UI may be in an event-tracking loop, such as between the |
| 5174 | // mouse-down and mouse-up in text selection or a button click. |
| 5175 | // Defer the close until after tracking is complete, so that we |
| 5176 | // don't free objects out from under the UI. |
[email protected] | 0770730 | 2009-11-06 00:50:29 | [diff] [blame] | 5177 | // TODO(shess): This could get more fine-grained. For instance, |
| 5178 | // closing a tab in another window while selecting text in the |
| 5179 | // current window's Omnibox should be just fine. |
[email protected] | 60780f41 | 2013-02-25 16:34:10 | [diff] [blame] | 5180 | if (view_->IsEventTracking()) { |
| 5181 | view_->CloseTabAfterEventTracking(); |
[email protected] | 0770730 | 2009-11-06 00:50:29 | [diff] [blame] | 5182 | return; |
| 5183 | } |
[email protected] | 60780f41 | 2013-02-25 16:34:10 | [diff] [blame] | 5184 | #endif |
[email protected] | 0770730 | 2009-11-06 00:50:29 | [diff] [blame] | 5185 | |
[email protected] | 420ae01 | 2009-04-24 05:16:32 | [diff] [blame] | 5186 | // Ignore this if it comes from a RenderViewHost that we aren't showing. |
[email protected] | 151a63d | 2011-12-20 22:32:52 | [diff] [blame] | 5187 | if (delegate_ && rvh == GetRenderViewHost()) |
[email protected] | 6934a70 | 2011-12-20 00:04:51 | [diff] [blame] | 5188 | delegate_->CloseContents(this); |
[email protected] | 420ae01 | 2009-04-24 05:16:32 | [diff] [blame] | 5189 | } |
| 5190 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 5191 | void WebContentsImpl::RequestMove(const gfx::Rect& new_bounds) { |
[email protected] | 6934a70 | 2011-12-20 00:04:51 | [diff] [blame] | 5192 | if (delegate_ && delegate_->IsPopupOrPanel(this)) |
| 5193 | delegate_->MoveContents(this, new_bounds); |
[email protected] | 420ae01 | 2009-04-24 05:16:32 | [diff] [blame] | 5194 | } |
| 5195 | |
fdegans | a696e511 | 2015-04-17 01:57:59 | [diff] [blame] | 5196 | void WebContentsImpl::DidStartLoading(FrameTreeNode* frame_tree_node, |
[email protected] | e3b10d1 | 2014-03-28 16:06:09 | [diff] [blame] | 5197 | bool to_different_document) { |
Evan Stade | c3b2602 | 2017-07-14 19:50:24 | [diff] [blame] | 5198 | LoadingStateChanged(frame_tree_node->IsMainFrame() && to_different_document, |
| 5199 | false, nullptr); |
dmazzoni | bf8cec4 | 2015-02-08 08:28:08 | [diff] [blame] | 5200 | |
| 5201 | // Notify accessibility that the user is navigating away from the |
| 5202 | // current document. |
| 5203 | // |
| 5204 | // TODO(dmazzoni): do this using a WebContentsObserver. |
dmazzoni | bf8cec4 | 2015-02-08 08:28:08 | [diff] [blame] | 5205 | BrowserAccessibilityManager* manager = |
fdegans | a696e511 | 2015-04-17 01:57:59 | [diff] [blame] | 5206 | frame_tree_node->current_frame_host()->browser_accessibility_manager(); |
dmazzoni | bf8cec4 | 2015-02-08 08:28:08 | [diff] [blame] | 5207 | if (manager) |
| 5208 | manager->UserIsNavigatingAway(); |
[email protected] | 420ae01 | 2009-04-24 05:16:32 | [diff] [blame] | 5209 | } |
| 5210 | |
fdegans | c73eec2 | 2015-03-19 14:47:54 | [diff] [blame] | 5211 | void WebContentsImpl::DidStopLoading() { |
dcheng | 5971627 | 2016-04-09 05:19:08 | [diff] [blame] | 5212 | std::unique_ptr<LoadNotificationDetails> details; |
[email protected] | 420ae01 | 2009-04-24 05:16:32 | [diff] [blame] | 5213 | |
[email protected] | 9595fd8 | 2013-04-19 21:28:49 | [diff] [blame] | 5214 | // Use the last committed entry rather than the active one, in case a |
| 5215 | // pending entry has been created. |
| 5216 | NavigationEntry* entry = controller_.GetLastCommittedEntry(); |
[email protected] | 3691e5cf | 2014-01-22 10:16:20 | [diff] [blame] | 5217 | Navigator* navigator = frame_tree_.root()->navigator(); |
[email protected] | 9595fd8 | 2013-04-19 21:28:49 | [diff] [blame] | 5218 | |
[email protected] | 420ae01 | 2009-04-24 05:16:32 | [diff] [blame] | 5219 | // An entry may not exist for a stop when loading an initial blank page or |
| 5220 | // if an iframe injected by script into a blank page finishes loading. |
| 5221 | if (entry) { |
[email protected] | 3691e5cf | 2014-01-22 10:16:20 | [diff] [blame] | 5222 | base::TimeDelta elapsed = |
| 5223 | base::TimeTicks::Now() - navigator->GetCurrentLoadStart(); |
[email protected] | 420ae01 | 2009-04-24 05:16:32 | [diff] [blame] | 5224 | |
| 5225 | details.reset(new LoadNotificationDetails( |
[email protected] | 36fc039 | 2011-12-25 03:59:51 | [diff] [blame] | 5226 | entry->GetVirtualURL(), |
[email protected] | 420ae01 | 2009-04-24 05:16:32 | [diff] [blame] | 5227 | elapsed, |
| 5228 | &controller_, |
| 5229 | controller_.GetCurrentEntryIndex())); |
| 5230 | } |
| 5231 | |
clamy | 44e84ce | 2016-02-22 15:38:25 | [diff] [blame] | 5232 | LoadingStateChanged(true, false, details.get()); |
[email protected] | 420ae01 | 2009-04-24 05:16:32 | [diff] [blame] | 5233 | } |
| 5234 | |
fdegans | a696e511 | 2015-04-17 01:57:59 | [diff] [blame] | 5235 | void WebContentsImpl::DidChangeLoadProgress() { |
| 5236 | double load_progress = frame_tree_.load_progress(); |
| 5237 | |
| 5238 | // The delegate is notified immediately for the first and last updates. Also, |
| 5239 | // since the message loop may be pretty busy when a page is loaded, it might |
| 5240 | // not execute a posted task in a timely manner so the progress report is sent |
| 5241 | // immediately if enough time has passed. |
| 5242 | base::TimeDelta min_delay = |
| 5243 | base::TimeDelta::FromMilliseconds(kMinimumDelayBetweenLoadingUpdatesMS); |
| 5244 | bool delay_elapsed = loading_last_progress_update_.is_null() || |
| 5245 | base::TimeTicks::Now() - loading_last_progress_update_ > min_delay; |
| 5246 | |
| 5247 | if (load_progress == 0.0 || load_progress == 1.0 || delay_elapsed) { |
| 5248 | // If there is a pending task to send progress, it is now obsolete. |
| 5249 | loading_weak_factory_.InvalidateWeakPtrs(); |
| 5250 | |
| 5251 | // Notify the load progress change. |
| 5252 | SendChangeLoadProgress(); |
| 5253 | |
| 5254 | // Clean-up the states if needed. |
| 5255 | if (load_progress == 1.0) |
| 5256 | ResetLoadProgressState(); |
| 5257 | return; |
| 5258 | } |
| 5259 | |
| 5260 | if (loading_weak_factory_.HasWeakPtrs()) |
| 5261 | return; |
| 5262 | |
skyostil | 95082a6 | 2015-06-05 19:53:07 | [diff] [blame] | 5263 | base::ThreadTaskRunnerHandle::Get()->PostDelayedTask( |
tzik | e2aca99 | 2017-09-05 08:50:54 | [diff] [blame] | 5264 | FROM_HERE, |
| 5265 | base::BindOnce(&WebContentsImpl::SendChangeLoadProgress, |
| 5266 | loading_weak_factory_.GetWeakPtr()), |
fdegans | a696e511 | 2015-04-17 01:57:59 | [diff] [blame] | 5267 | min_delay); |
| 5268 | } |
| 5269 | |
avi | d6d88b91 | 2017-01-13 00:16:00 | [diff] [blame] | 5270 | std::vector<std::unique_ptr<NavigationThrottle>> |
| 5271 | WebContentsImpl::CreateThrottlesForNavigation( |
clamy | cbf524d4 | 2016-09-27 12:48:35 | [diff] [blame] | 5272 | NavigationHandle* navigation_handle) { |
| 5273 | return GetContentClient()->browser()->CreateThrottlesForNavigation( |
| 5274 | navigation_handle); |
| 5275 | } |
| 5276 | |
clamy | 1e5574e | 2016-09-29 16:48:44 | [diff] [blame] | 5277 | std::unique_ptr<NavigationUIData> WebContentsImpl::GetNavigationUIData( |
| 5278 | NavigationHandle* navigation_handle) { |
| 5279 | DCHECK(IsBrowserSideNavigationEnabled()); |
| 5280 | return GetContentClient()->browser()->GetNavigationUIData(navigation_handle); |
| 5281 | } |
| 5282 | |
pdr | 15f5b5b | 2017-06-20 00:58:00 | [diff] [blame] | 5283 | void WebContentsImpl::DidCancelLoading() { |
| 5284 | controller_.DiscardNonCommittedEntries(); |
| 5285 | |
| 5286 | // Update the URL display. |
| 5287 | NotifyNavigationStateChanged(INVALIDATE_TYPE_URL); |
| 5288 | } |
| 5289 | |
[email protected] | 59167c2 | 2013-06-03 18:07:32 | [diff] [blame] | 5290 | void WebContentsImpl::DidAccessInitialDocument() { |
[email protected] | b4c8401 | 2014-04-28 19:51:10 | [diff] [blame] | 5291 | has_accessed_initial_document_ = true; |
| 5292 | |
[email protected] | d1371bf8e | 2014-04-19 03:26:24 | [diff] [blame] | 5293 | // We may have left a failed browser-initiated navigation in the address bar |
| 5294 | // to let the user edit it and try again. Clear it now that content might |
| 5295 | // show up underneath it. |
| 5296 | if (!IsLoading() && controller_.GetPendingEntry()) |
avi | 45a7253 | 2015-04-07 21:01:45 | [diff] [blame] | 5297 | controller_.DiscardPendingEntry(false); |
[email protected] | d1371bf8e | 2014-04-19 03:26:24 | [diff] [blame] | 5298 | |
[email protected] | 59167c2 | 2013-06-03 18:07:32 | [diff] [blame] | 5299 | // Update the URL display. |
thestig | c4cac8f | 2014-09-04 21:17:50 | [diff] [blame] | 5300 | NotifyNavigationStateChanged(INVALIDATE_TYPE_URL); |
[email protected] | 59167c2 | 2013-06-03 18:07:32 | [diff] [blame] | 5301 | } |
| 5302 | |
alexmos | be2f4c3 | 2015-03-10 02:30:23 | [diff] [blame] | 5303 | void WebContentsImpl::DidChangeName(RenderFrameHost* render_frame_host, |
| 5304 | const std::string& name) { |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 5305 | for (auto& observer : observers_) |
| 5306 | observer.FrameNameChanged(render_frame_host, name); |
alexmos | be2f4c3 | 2015-03-10 02:30:23 | [diff] [blame] | 5307 | } |
| 5308 | |
[email protected] | 39f2f925 | 2014-05-03 00:54:01 | [diff] [blame] | 5309 | void WebContentsImpl::DocumentOnLoadCompleted( |
[email protected] | 5027949 | 2014-05-05 23:24:29 | [diff] [blame] | 5310 | RenderFrameHost* render_frame_host) { |
falken | 52a56e3 | 2016-12-08 05:02:40 | [diff] [blame] | 5311 | ShowInsecureLocalhostWarningIfNeeded(); |
| 5312 | |
creis | 97867aa | 2017-02-17 18:39:45 | [diff] [blame] | 5313 | is_notifying_observers_ = true; |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 5314 | for (auto& observer : observers_) |
| 5315 | observer.DocumentOnLoadCompletedInMainFrame(); |
creis | 97867aa | 2017-02-17 18:39:45 | [diff] [blame] | 5316 | is_notifying_observers_ = false; |
[email protected] | 6578fef | 2013-10-14 02:35:09 | [diff] [blame] | 5317 | |
| 5318 | // TODO(avi): Remove. http://crbug.com/170921 |
[email protected] | 8ff00d7 | 2012-10-23 19:12:21 | [diff] [blame] | 5319 | NotificationService::current()->Notify( |
| 5320 | NOTIFICATION_LOAD_COMPLETED_MAIN_FRAME, |
| 5321 | Source<WebContents>(this), |
[email protected] | 5027949 | 2014-05-05 23:24:29 | [diff] [blame] | 5322 | NotificationService::NoDetails()); |
[email protected] | 2549749 | 2010-09-11 15:15:08 | [diff] [blame] | 5323 | } |
| 5324 | |
creis | 8eb8ef2 | 2015-11-04 22:51:38 | [diff] [blame] | 5325 | void WebContentsImpl::UpdateStateForFrame(RenderFrameHost* render_frame_host, |
| 5326 | const PageState& page_state) { |
creis | 8eb8ef2 | 2015-11-04 22:51:38 | [diff] [blame] | 5327 | // The state update affects the last NavigationEntry associated with the given |
| 5328 | // |render_frame_host|. This may not be the last committed NavigationEntry (as |
| 5329 | // in the case of an UpdateState from a frame being swapped out). We track |
| 5330 | // which entry this is in the RenderFrameHost's nav_entry_id. |
| 5331 | RenderFrameHostImpl* rfhi = |
| 5332 | static_cast<RenderFrameHostImpl*>(render_frame_host); |
| 5333 | NavigationEntryImpl* entry = |
| 5334 | controller_.GetEntryWithUniqueID(rfhi->nav_entry_id()); |
| 5335 | if (!entry) |
| 5336 | return; |
| 5337 | |
| 5338 | FrameNavigationEntry* frame_entry = |
| 5339 | entry->GetFrameEntry(rfhi->frame_tree_node()); |
| 5340 | if (!frame_entry) |
| 5341 | return; |
| 5342 | |
creis | d06a942 | 2015-11-11 03:08:45 | [diff] [blame] | 5343 | // The SiteInstance might not match if we do a cross-process navigation with |
| 5344 | // replacement (e.g., auto-subframe), in which case the swap out of the old |
| 5345 | // RenderFrameHost runs in the background after the old FrameNavigationEntry |
| 5346 | // has already been replaced and destroyed. |
| 5347 | if (frame_entry->site_instance() != rfhi->GetSiteInstance()) |
| 5348 | return; |
| 5349 | |
creis | 8eb8ef2 | 2015-11-04 22:51:38 | [diff] [blame] | 5350 | if (page_state == frame_entry->page_state()) |
| 5351 | return; // Nothing to update. |
| 5352 | |
creis | 0cade2e | 2017-02-28 06:37:47 | [diff] [blame] | 5353 | DCHECK(page_state.IsValid()) << "Shouldn't set an empty PageState."; |
nasko | 3463467 | 2016-07-29 18:46:06 | [diff] [blame] | 5354 | |
| 5355 | // The document_sequence_number and item_sequence_number recorded in the |
| 5356 | // FrameNavigationEntry should not differ from the one coming with the update, |
| 5357 | // since it must come from the same document. Do not update it if a difference |
| 5358 | // is detected, as this indicates that |frame_entry| is not the correct one. |
| 5359 | ExplodedPageState exploded_state; |
| 5360 | if (!DecodePageState(page_state.ToEncodedData(), &exploded_state)) |
| 5361 | return; |
| 5362 | |
| 5363 | if (exploded_state.top.document_sequence_number != |
| 5364 | frame_entry->document_sequence_number() || |
| 5365 | exploded_state.top.item_sequence_number != |
| 5366 | frame_entry->item_sequence_number()) { |
| 5367 | return; |
| 5368 | } |
| 5369 | |
nasko | 04a322f25a | 2016-09-01 00:00:34 | [diff] [blame] | 5370 | frame_entry->SetPageState(page_state); |
creis | 8eb8ef2 | 2015-11-04 22:51:38 | [diff] [blame] | 5371 | controller_.NotifyEntryChanged(entry); |
| 5372 | } |
| 5373 | |
[email protected] | ef3adfc | 2014-05-11 00:04:54 | [diff] [blame] | 5374 | void WebContentsImpl::UpdateTitle(RenderFrameHost* render_frame_host, |
[email protected] | ef3adfc | 2014-05-11 00:04:54 | [diff] [blame] | 5375 | const base::string16& title, |
| 5376 | base::i18n::TextDirection title_direction) { |
[email protected] | ef3adfc | 2014-05-11 00:04:54 | [diff] [blame] | 5377 | // Try to find the navigation entry, which might not be the current one. |
avi | 286019ce | 2015-07-29 01:26:58 | [diff] [blame] | 5378 | // For example, it might be from a recently swapped out RFH. |
avi | 1edc855 | 2016-10-13 21:37:16 | [diff] [blame] | 5379 | NavigationEntryImpl* entry = controller_.GetEntryWithUniqueID( |
creis | ad8c31a | 2016-05-24 17:07:04 | [diff] [blame] | 5380 | static_cast<RenderFrameHostImpl*>(render_frame_host)->nav_entry_id()); |
[email protected] | ef3adfc | 2014-05-11 00:04:54 | [diff] [blame] | 5381 | |
| 5382 | // We can handle title updates when we don't have an entry in |
| 5383 | // UpdateTitleForEntry, but only if the update is from the current RVH. |
| 5384 | // TODO(avi): Change to make decisions based on the RenderFrameHost. |
avi | 286019ce | 2015-07-29 01:26:58 | [diff] [blame] | 5385 | if (!entry && render_frame_host != GetMainFrame()) |
[email protected] | ef3adfc | 2014-05-11 00:04:54 | [diff] [blame] | 5386 | return; |
| 5387 | |
| 5388 | // TODO(evan): make use of title_direction. |
| 5389 | // http://code.google.com/p/chromium/issues/detail?id=27094 |
afakhry | 6f0c1ec2 | 2016-07-14 13:55:13 | [diff] [blame] | 5390 | UpdateTitleForEntry(entry, title); |
[email protected] | ef3adfc | 2014-05-11 00:04:54 | [diff] [blame] | 5391 | } |
| 5392 | |
| 5393 | void WebContentsImpl::UpdateEncoding(RenderFrameHost* render_frame_host, |
| 5394 | const std::string& encoding) { |
| 5395 | SetEncoding(encoding); |
| 5396 | } |
| 5397 | |
[email protected] | 39f2f925 | 2014-05-03 00:54:01 | [diff] [blame] | 5398 | void WebContentsImpl::DocumentAvailableInMainFrame( |
| 5399 | RenderViewHost* render_view_host) { |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 5400 | for (auto& observer : observers_) |
| 5401 | observer.DocumentAvailableInMainFrame(); |
[email protected] | 39f2f925 | 2014-05-03 00:54:01 | [diff] [blame] | 5402 | } |
nasko | c0fceff | 2015-04-30 15:53:52 | [diff] [blame] | 5403 | |
[email protected] | e1c3a55 | 2012-05-04 20:51:32 | [diff] [blame] | 5404 | void WebContentsImpl::RouteCloseEvent(RenderViewHost* rvh) { |
| 5405 | // Tell the active RenderViewHost to run unload handlers and close, as long |
| 5406 | // as the request came from a RenderViewHost in the same BrowsingInstance. |
| 5407 | // In most cases, we receive this from a swapped out RenderViewHost. |
| 5408 | // It is possible to receive it from one that has just been swapped in, |
| 5409 | // in which case we might as well deliver the message anyway. |
| 5410 | if (rvh->GetSiteInstance()->IsRelatedSiteInstance(GetSiteInstance())) |
nasko | c0fceff | 2015-04-30 15:53:52 | [diff] [blame] | 5411 | ClosePage(); |
[email protected] | e1c3a55 | 2012-05-04 20:51:32 | [diff] [blame] | 5412 | } |
| 5413 | |
alexmos | e7da5a1 | 2015-04-09 02:22:16 | [diff] [blame] | 5414 | bool WebContentsImpl::ShouldRouteMessageEvent( |
| 5415 | RenderFrameHost* target_rfh, |
| 5416 | SiteInstance* source_site_instance) const { |
| 5417 | // Allow the message if this WebContents is dedicated to a browser plugin |
| 5418 | // guest. |
[email protected] | 0eba810b | 2012-10-18 03:19:36 | [diff] [blame] | 5419 | // Note: This check means that an embedder could theoretically receive a |
| 5420 | // postMessage from anyone (not just its own guests). However, this is |
| 5421 | // probably not a risk for apps since other pages won't have references |
| 5422 | // to App windows. |
alexmos | e7da5a1 | 2015-04-09 02:22:16 | [diff] [blame] | 5423 | return GetBrowserPluginGuest() || GetBrowserPluginEmbedder(); |
| 5424 | } |
[email protected] | f546640b | 2012-05-15 00:03:49 | [diff] [blame] | 5425 | |
alexmos | 5872904 | 2015-06-18 23:20:00 | [diff] [blame] | 5426 | void WebContentsImpl::EnsureOpenerProxiesExist(RenderFrameHost* source_rfh) { |
alexmos | e7da5a1 | 2015-04-09 02:22:16 | [diff] [blame] | 5427 | WebContentsImpl* source_web_contents = static_cast<WebContentsImpl*>( |
| 5428 | WebContents::FromRenderFrameHost(source_rfh)); |
[email protected] | f546640b | 2012-05-15 00:03:49 | [diff] [blame] | 5429 | |
alexmos | e7da5a1 | 2015-04-09 02:22:16 | [diff] [blame] | 5430 | if (source_web_contents) { |
lazyboy | 6ec48b2a | 2015-06-29 15:18:14 | [diff] [blame] | 5431 | // If this message is going to outer WebContents from inner WebContents, |
| 5432 | // then we should not create a RenderView. AttachToOuterWebContentsFrame() |
| 5433 | // already created a RenderFrameProxyHost for that purpose. |
| 5434 | if (GetBrowserPluginEmbedder() && |
ekaramad | 1beabecc | 2016-09-23 20:18:17 | [diff] [blame] | 5435 | GuestMode::IsCrossProcessFrameGuest(source_web_contents)) { |
lazyboy | 6ec48b2a | 2015-06-29 15:18:14 | [diff] [blame] | 5436 | return; |
| 5437 | } |
| 5438 | |
lfg | 812874d | 2016-02-09 22:26:13 | [diff] [blame] | 5439 | if (this != source_web_contents && GetBrowserPluginGuest()) { |
nasko | b3041b98a4 | 2016-03-12 04:43:06 | [diff] [blame] | 5440 | // We create a RenderFrameProxyHost for the embedder in the guest's render |
| 5441 | // process but we intentionally do not expose the embedder's opener chain |
| 5442 | // to it. |
| 5443 | source_web_contents->GetRenderManager()->CreateRenderFrameProxy( |
| 5444 | GetSiteInstance()); |
[email protected] | f546640b | 2012-05-15 00:03:49 | [diff] [blame] | 5445 | } else { |
alexmos | 5872904 | 2015-06-18 23:20:00 | [diff] [blame] | 5446 | RenderFrameHostImpl* source_rfhi = |
| 5447 | static_cast<RenderFrameHostImpl*>(source_rfh); |
| 5448 | source_rfhi->frame_tree_node()->render_manager()->CreateOpenerProxies( |
alexmos | 90325cf | 2015-09-02 17:18:39 | [diff] [blame] | 5449 | GetSiteInstance(), nullptr); |
[email protected] | f546640b | 2012-05-15 00:03:49 | [diff] [blame] | 5450 | } |
| 5451 | } |
[email protected] | f546640b | 2012-05-15 00:03:49 | [diff] [blame] | 5452 | } |
| 5453 | |
avallee | 9993fca | 2016-11-17 06:16:50 | [diff] [blame] | 5454 | void WebContentsImpl::SetAsFocusedWebContentsIfNecessary() { |
| 5455 | // Only change focus if we are not currently focused. |
| 5456 | WebContentsImpl* old_contents = GetFocusedWebContents(); |
| 5457 | if (old_contents == this) |
| 5458 | return; |
| 5459 | |
paulmeyer | feafc2d | 2017-04-25 21:46:40 | [diff] [blame] | 5460 | GetOutermostWebContents()->node_.SetFocusedWebContents(this); |
| 5461 | |
Greg Thompson | fb95760 | 2017-09-04 10:25:52 | [diff] [blame] | 5462 | if (!GuestMode::IsCrossProcessFrameGuest(this) && browser_plugin_guest_) |
paulmeyer | feafc2d | 2017-04-25 21:46:40 | [diff] [blame] | 5463 | return; |
| 5464 | |
avallee | 9993fca | 2016-11-17 06:16:50 | [diff] [blame] | 5465 | // Send a page level blur to the old contents so that it displays inactive UI |
| 5466 | // and focus this contents to activate it. |
| 5467 | if (old_contents) |
| 5468 | old_contents->GetMainFrame()->GetRenderWidgetHost()->SetPageFocus(false); |
avallee | c2ff1ef | 2017-01-21 00:12:30 | [diff] [blame] | 5469 | |
| 5470 | // Make sure the outer web contents knows our frame is focused. Otherwise, the |
| 5471 | // outer renderer could have the element before or after the frame element |
| 5472 | // focused which would return early without actually advancing focus. |
avallee | d68cdd1 | 2017-06-21 22:07:27 | [diff] [blame] | 5473 | FocusOuterAttachmentFrameChain(); |
avallee | c2ff1ef | 2017-01-21 00:12:30 | [diff] [blame] | 5474 | |
lfg | 1453e41 | 2017-04-11 00:48:50 | [diff] [blame] | 5475 | if (ShowingInterstitialPage()) { |
creis | adca986 | 2017-06-16 19:12:11 | [diff] [blame] | 5476 | static_cast<RenderFrameHostImpl*>(interstitial_page_->GetMainFrame()) |
lfg | 1453e41 | 2017-04-11 00:48:50 | [diff] [blame] | 5477 | ->GetRenderWidgetHost() |
| 5478 | ->SetPageFocus(true); |
| 5479 | } else { |
| 5480 | GetMainFrame()->GetRenderWidgetHost()->SetPageFocus(true); |
| 5481 | } |
avallee | 9993fca | 2016-11-17 06:16:50 | [diff] [blame] | 5482 | } |
| 5483 | |
avallee | 0206f78 | 2016-07-28 18:55:33 | [diff] [blame] | 5484 | void WebContentsImpl::SetFocusedFrame(FrameTreeNode* node, |
| 5485 | SiteInstance* source) { |
avallee | 0206f78 | 2016-07-28 18:55:33 | [diff] [blame] | 5486 | frame_tree_.SetFocusedFrame(node, source); |
avallee | d68cdd1 | 2017-06-21 22:07:27 | [diff] [blame] | 5487 | |
Lucas Furukawa Gadani | abbfa34 | 2017-08-29 19:37:57 | [diff] [blame] | 5488 | if (auto* inner_contents = node_.GetInnerWebContentsInFrame(node)) { |
| 5489 | // |this| is an outer WebContents and |node| represents an inner |
| 5490 | // WebContents. Transfer the focus to the inner contents if |this| is |
| 5491 | // focused. |
| 5492 | if (GetFocusedWebContents() == this) |
| 5493 | inner_contents->SetAsFocusedWebContentsIfNecessary(); |
| 5494 | } else if (node_.OuterContentsFrameTreeNode() && |
| 5495 | node_.OuterContentsFrameTreeNode() |
| 5496 | ->current_frame_host() |
| 5497 | ->GetSiteInstance() == source) { |
| 5498 | // |this| is an inner WebContents, |node| is its main FrameTreeNode and |
| 5499 | // the outer WebContents FrameTreeNode is at |source|'s SiteInstance. |
| 5500 | // Transfer the focus to the inner WebContents if the outer WebContents is |
| 5501 | // focused. This branch is used when an inner WebContents is focused through |
| 5502 | // its RenderFrameProxyHost (via FrameHostMsg_FrameFocused IPC, used to |
| 5503 | // implement the window.focus() API). |
| 5504 | if (GetFocusedWebContents() == GetOuterWebContents()) |
| 5505 | SetAsFocusedWebContentsIfNecessary(); |
| 5506 | } else if (!GetOuterWebContents()) { |
| 5507 | // This is an outermost WebContents. |
| 5508 | SetAsFocusedWebContentsIfNecessary(); |
| 5509 | } else if (!GuestMode::IsCrossProcessFrameGuest(this) && |
| 5510 | GetOuterWebContents()) { |
| 5511 | // TODO(lfg, paulmeyer): Allows BrowserPlugins to set themselves as the |
| 5512 | // focused WebContents. This works around a bug in FindRequestManager that |
| 5513 | // doesn't support properly traversing BrowserPlugins. |
| 5514 | SetAsFocusedWebContentsIfNecessary(); |
| 5515 | } |
avallee | d68cdd1 | 2017-06-21 22:07:27 | [diff] [blame] | 5516 | } |
| 5517 | |
Avi Drissman | 36f801f | 2018-02-01 20:06:04 | [diff] [blame] | 5518 | void WebContentsImpl::DidCallFocus() { |
| 5519 | // Any explicit focusing of another window while this WebContents is in |
| 5520 | // fullscreen can be used to confuse the user, so drop fullscreen. |
| 5521 | if (IsFullscreenForCurrentTab()) |
| 5522 | ExitFullscreen(true); |
| 5523 | } |
| 5524 | |
avallee | d68cdd1 | 2017-06-21 22:07:27 | [diff] [blame] | 5525 | RenderFrameHost* WebContentsImpl::GetFocusedFrameIncludingInnerWebContents() { |
| 5526 | WebContentsImpl* contents = this; |
| 5527 | FrameTreeNode* focused_node = contents->frame_tree_.GetFocusedFrame(); |
| 5528 | |
| 5529 | // If there is no focused frame in the outer WebContents, we need to return |
| 5530 | // null. |
| 5531 | if (!focused_node) |
| 5532 | return nullptr; |
| 5533 | |
| 5534 | // If the focused frame is embedding an inner WebContents, we must descend |
| 5535 | // into that contents. If the current WebContents does not have a focused |
| 5536 | // frame, return the main frame of this contents instead of the focused empty |
| 5537 | // frame embedding this contents. |
| 5538 | while (true) { |
| 5539 | contents = contents->node_.GetInnerWebContentsInFrame(focused_node); |
| 5540 | if (!contents) |
| 5541 | return focused_node->current_frame_host(); |
| 5542 | |
| 5543 | focused_node = contents->frame_tree_.GetFocusedFrame(); |
| 5544 | if (!focused_node) |
| 5545 | return contents->GetMainFrame(); |
| 5546 | } |
avallee | 0206f78 | 2016-07-28 18:55:33 | [diff] [blame] | 5547 | } |
| 5548 | |
Lucas Furukawa Gadani | abbfa34 | 2017-08-29 19:37:57 | [diff] [blame] | 5549 | void WebContentsImpl::OnAdvanceFocus(RenderFrameHostImpl* source_rfh) { |
| 5550 | // When a RenderFrame needs to advance focus to a RenderFrameProxy (by hitting |
| 5551 | // TAB), the RenderFrameProxy sends an IPC to RenderFrameProxyHost. When this |
| 5552 | // RenderFrameProxyHost represents an inner WebContents, the outer WebContents |
| 5553 | // needs to focus the inner WebContents. |
| 5554 | if (GetOuterWebContents() && |
| 5555 | GetOuterWebContents() == source_rfh->delegate()->GetAsWebContents() && |
| 5556 | GetFocusedWebContents() == GetOuterWebContents()) { |
| 5557 | SetAsFocusedWebContentsIfNecessary(); |
| 5558 | } |
| 5559 | } |
| 5560 | |
ekaramad | a110f64 | 2016-12-21 19:47:28 | [diff] [blame] | 5561 | void WebContentsImpl::OnFocusedElementChangedInFrame( |
| 5562 | RenderFrameHostImpl* frame, |
| 5563 | const gfx::Rect& bounds_in_root_view) { |
| 5564 | RenderWidgetHostViewBase* root_view = |
| 5565 | static_cast<RenderWidgetHostViewBase*>(GetRenderWidgetHostView()); |
| 5566 | if (!root_view || !frame->GetView()) |
| 5567 | return; |
| 5568 | |
| 5569 | // Converting to screen coordinates. |
| 5570 | gfx::Point origin = bounds_in_root_view.origin(); |
| 5571 | origin += root_view->GetViewBounds().OffsetFromOrigin(); |
| 5572 | gfx::Rect bounds_in_screen(origin, bounds_in_root_view.size()); |
| 5573 | |
| 5574 | root_view->FocusedNodeChanged(frame->has_focused_editable_element(), |
| 5575 | bounds_in_screen); |
| 5576 | |
| 5577 | FocusedNodeDetails details = {frame->has_focused_editable_element(), |
| 5578 | bounds_in_screen}; |
| 5579 | |
| 5580 | // TODO(ekaramad): We should replace this with an observer notification |
| 5581 | // (https://crbug.com/675975). |
| 5582 | NotificationService::current()->Notify( |
| 5583 | NOTIFICATION_FOCUS_CHANGED_IN_PAGE, |
| 5584 | Source<RenderViewHost>(GetRenderViewHost()), |
| 5585 | Details<FocusedNodeDetails>(&details)); |
| 5586 | } |
| 5587 | |
avi | a90ae4e | 2016-11-11 20:49:33 | [diff] [blame] | 5588 | bool WebContentsImpl::DidAddMessageToConsole(int32_t level, |
| 5589 | const base::string16& message, |
| 5590 | int32_t line_no, |
| 5591 | const base::string16& source_id) { |
[email protected] | a796f20 | 2012-05-30 14:14:25 | [diff] [blame] | 5592 | if (!delegate_) |
| 5593 | return false; |
avi | a90ae4e | 2016-11-11 20:49:33 | [diff] [blame] | 5594 | return delegate_->DidAddMessageToConsole(this, level, message, line_no, |
| 5595 | source_id); |
[email protected] | a796f20 | 2012-05-30 14:14:25 | [diff] [blame] | 5596 | } |
| 5597 | |
Daniel Cheng | 90196c8 | 2018-04-25 21:49:14 | [diff] [blame] | 5598 | void WebContentsImpl::DidReceiveInputEvent( |
dominickn | 9c7ceaa3 | 2016-02-27 01:52:53 | [diff] [blame] | 5599 | RenderWidgetHostImpl* render_widget_host, |
| 5600 | const blink::WebInputEvent::Type type) { |
Daniel Cheng | 90196c8 | 2018-04-25 21:49:14 | [diff] [blame] | 5601 | // Ideally, this list would be based more off of |
| 5602 | // https://whatwg.org/C/interaction.html#triggered-by-user-activation. |
| 5603 | if (type != blink::WebInputEvent::kMouseDown && |
| 5604 | type != blink::WebInputEvent::kGestureScrollBegin && |
| 5605 | type != blink::WebInputEvent::kTouchStart && |
| 5606 | type != blink::WebInputEvent::kRawKeyDown) |
| 5607 | return; |
| 5608 | |
kenrb | 1922185 | 2016-04-29 17:21:40 | [diff] [blame] | 5609 | // Ignore unless the widget is currently in the frame tree. |
| 5610 | if (!HasMatchingWidgetHost(&frame_tree_, render_widget_host)) |
avi | c3aa842 | 2015-11-09 20:57:22 | [diff] [blame] | 5611 | return; |
| 5612 | |
Daniel Cheng | 90196c8 | 2018-04-25 21:49:14 | [diff] [blame] | 5613 | if (type != blink::WebInputEvent::kGestureScrollBegin) |
| 5614 | last_interactive_input_event_time_ = ui::EventTimeForNow(); |
dominickn | 9c7ceaa3 | 2016-02-27 01:52:53 | [diff] [blame] | 5615 | |
Daniel Cheng | 90196c8 | 2018-04-25 21:49:14 | [diff] [blame] | 5616 | OnUserInteraction(type); |
dominickn | 2dd142dd | 2015-10-29 05:30:50 | [diff] [blame] | 5617 | } |
| 5618 | |
avallee | 9993fca | 2016-11-17 06:16:50 | [diff] [blame] | 5619 | void WebContentsImpl::FocusOwningWebContents( |
| 5620 | RenderWidgetHostImpl* render_widget_host) { |
| 5621 | // The PDF plugin still runs as a BrowserPlugin and must go through the |
| 5622 | // input redirection mechanism. It must not become focused direcly. |
| 5623 | if (!GuestMode::IsCrossProcessFrameGuest(this) && browser_plugin_guest_) |
| 5624 | return; |
| 5625 | |
| 5626 | RenderWidgetHostImpl* focused_widget = |
| 5627 | GetFocusedRenderWidgetHost(render_widget_host); |
| 5628 | |
| 5629 | if (focused_widget != render_widget_host && |
avallee | 8e88159 | 2016-11-19 00:39:30 | [diff] [blame] | 5630 | (!focused_widget || |
| 5631 | focused_widget->delegate() != render_widget_host->delegate())) { |
avallee | 9993fca | 2016-11-17 06:16:50 | [diff] [blame] | 5632 | SetAsFocusedWebContentsIfNecessary(); |
| 5633 | } |
| 5634 | } |
| 5635 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 5636 | void WebContentsImpl::OnIgnoredUIEvent() { |
[email protected] | 3114509 | 2011-09-30 01:49:44 | [diff] [blame] | 5637 | // Notify observers. |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 5638 | for (auto& observer : observers_) |
| 5639 | observer.DidGetIgnoredUIEvent(); |
[email protected] | fa1cf0b8 | 2010-01-15 21:49:44 | [diff] [blame] | 5640 | } |
| 5641 | |
avi | c3aa842 | 2015-11-09 20:57:22 | [diff] [blame] | 5642 | void WebContentsImpl::RendererUnresponsive( |
avi | ce79930 | 2017-03-09 16:34:59 | [diff] [blame] | 5643 | RenderWidgetHostImpl* render_widget_host) { |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 5644 | for (auto& observer : observers_) |
Avi Drissman | 1572e8c3c | 2018-02-02 19:06:36 | [diff] [blame] | 5645 | observer.OnRendererUnresponsive(render_widget_host->GetProcess()); |
afakhry | 9824183 | 2016-03-11 19:27:47 | [diff] [blame] | 5646 | |
avi | c031d39 | 2017-03-03 03:09:42 | [diff] [blame] | 5647 | if (ShouldIgnoreUnresponsiveRenderer()) |
[email protected] | e5fc163 | 2011-08-08 07:51:53 | [diff] [blame] | 5648 | return; |
| 5649 | |
Avi Drissman | 8920def | 2018-01-31 19:53:36 | [diff] [blame] | 5650 | if (!render_widget_host->renderer_initialized()) |
[email protected] | 5545290 | 2011-06-01 21:57:47 | [diff] [blame] | 5651 | return; |
| 5652 | |
Dave Tapuska | c6146c5 | 2017-12-20 22:48:15 | [diff] [blame] | 5653 | if (delegate_) |
Avi Drissman | 1572e8c3c | 2018-02-02 19:06:36 | [diff] [blame] | 5654 | delegate_->RendererUnresponsive(this, render_widget_host); |
[email protected] | 420ae01 | 2009-04-24 05:16:32 | [diff] [blame] | 5655 | } |
| 5656 | |
avi | c3aa842 | 2015-11-09 20:57:22 | [diff] [blame] | 5657 | void WebContentsImpl::RendererResponsive( |
| 5658 | RenderWidgetHostImpl* render_widget_host) { |
[email protected] | 6934a70 | 2011-12-20 00:04:51 | [diff] [blame] | 5659 | if (delegate_) |
Avi Drissman | 1572e8c3c | 2018-02-02 19:06:36 | [diff] [blame] | 5660 | delegate_->RendererResponsive(this, render_widget_host); |
[email protected] | 420ae01 | 2009-04-24 05:16:32 | [diff] [blame] | 5661 | } |
| 5662 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 5663 | void WebContentsImpl::BeforeUnloadFiredFromRenderManager( |
[email protected] | feaded0 | 2012-09-25 19:12:55 | [diff] [blame] | 5664 | bool proceed, const base::TimeTicks& proceed_time, |
[email protected] | 420ae01 | 2009-04-24 05:16:32 | [diff] [blame] | 5665 | bool* proceed_to_fire_unload) { |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 5666 | for (auto& observer : observers_) |
| 5667 | observer.BeforeUnloadFired(proceed_time); |
[email protected] | 6934a70 | 2011-12-20 00:04:51 | [diff] [blame] | 5668 | if (delegate_) |
| 5669 | delegate_->BeforeUnloadFired(this, proceed, proceed_to_fire_unload); |
[email protected] | e80af49 | 2013-06-24 21:52:09 | [diff] [blame] | 5670 | // Note: |this| might be deleted at this point. |
[email protected] | 420ae01 | 2009-04-24 05:16:32 | [diff] [blame] | 5671 | } |
| 5672 | |
[email protected] | 58d5cfe | 2013-07-10 02:40:52 | [diff] [blame] | 5673 | void WebContentsImpl::RenderProcessGoneFromRenderManager( |
[email protected] | 3a3d4747 | 2010-07-15 21:03:54 | [diff] [blame] | 5674 | RenderViewHost* render_view_host) { |
[email protected] | 443b80e | 2010-12-14 00:42:23 | [diff] [blame] | 5675 | DCHECK(crashed_status_ != base::TERMINATION_STATUS_STILL_RUNNING); |
[email protected] | ec6a7eb | 2013-04-22 17:34:22 | [diff] [blame] | 5676 | RenderViewTerminated(render_view_host, crashed_status_, crashed_error_code_); |
[email protected] | 3a3d4747 | 2010-07-15 21:03:54 | [diff] [blame] | 5677 | } |
| 5678 | |
Jianzhou Feng | d8720c7 | 2018-01-18 03:06:30 | [diff] [blame] | 5679 | void WebContentsImpl::UpdateRenderViewSizeForRenderManager(bool is_main_frame) { |
[email protected] | 8643e6d | 2012-01-18 20:26:10 | [diff] [blame] | 5680 | // TODO(brettw) this is a hack. See WebContentsView::SizeContents. |
Jianzhou Feng | d8720c7 | 2018-01-18 03:06:30 | [diff] [blame] | 5681 | gfx::Size size = GetSizeForNewRenderView(is_main_frame); |
[email protected] | 0323ee4 | 2010-02-17 22:03:26 | [diff] [blame] | 5682 | // 0x0 isn't a valid window size (minimal window size is 1x1) but it may be |
| 5683 | // here during container initialization and normal window size will be set |
| 5684 | // later. In case of tab duplication this resizing to 0x0 prevents setting |
| 5685 | // normal size later so just ignore it. |
| 5686 | if (!size.IsEmpty()) |
| 5687 | view_->SizeContents(size); |
[email protected] | 420ae01 | 2009-04-24 05:16:32 | [diff] [blame] | 5688 | } |
| 5689 | |
[email protected] | af90590 | 2013-10-01 21:38:51 | [diff] [blame] | 5690 | void WebContentsImpl::CancelModalDialogsForRenderManager() { |
| 5691 | // We need to cancel modal dialogs when doing a process swap, since the load |
avi | 2460c76 | 2015-04-17 15:21:54 | [diff] [blame] | 5692 | // deferrer would prevent us from swapping out. We also clear the state |
| 5693 | // because this is a cross-process navigation, which means that it's a new |
| 5694 | // site that should not have to pay for the sins of its predecessor. |
creis | 89a0f78 | 2015-05-27 16:13:17 | [diff] [blame] | 5695 | // |
| 5696 | // Note that we don't bother telling browser_plugin_embedder_ because the |
| 5697 | // cross-process navigation will either destroy the browser plugins or not |
| 5698 | // require their dialogs to close. |
avi | 5d3b869 | 2016-10-12 22:00:46 | [diff] [blame] | 5699 | if (dialog_manager_) { |
avi | 6879fcf | 2017-01-21 05:27:53 | [diff] [blame] | 5700 | dialog_manager_->CancelDialogs(this, /*reset_state=*/true); |
avi | 5d3b869 | 2016-10-12 22:00:46 | [diff] [blame] | 5701 | } |
[email protected] | af90590 | 2013-10-01 21:38:51 | [diff] [blame] | 5702 | } |
| 5703 | |
[email protected] | 02d7b6e | 2014-06-24 21:01:50 | [diff] [blame] | 5704 | void WebContentsImpl::NotifySwappedFromRenderManager(RenderFrameHost* old_host, |
| 5705 | RenderFrameHost* new_host, |
| 5706 | bool is_main_frame) { |
| 5707 | if (is_main_frame) { |
nasko | f5940b9f | 2015-03-02 23:04:05 | [diff] [blame] | 5708 | NotifyViewSwapped(old_host ? old_host->GetRenderViewHost() : nullptr, |
[email protected] | 02d7b6e | 2014-06-24 21:01:50 | [diff] [blame] | 5709 | new_host->GetRenderViewHost()); |
[email protected] | a6b73c6 | 2013-02-11 23:05:08 | [diff] [blame] | 5710 | |
[email protected] | 02d7b6e | 2014-06-24 21:01:50 | [diff] [blame] | 5711 | // Make sure the visible RVH reflects the new delegate's preferences. |
| 5712 | if (delegate_) |
| 5713 | view_->SetOverscrollControllerEnabled(CanOverscrollContent()); |
[email protected] | d56a49e | 2013-02-23 00:47:39 | [diff] [blame] | 5714 | |
[email protected] | 02d7b6e | 2014-06-24 21:01:50 | [diff] [blame] | 5715 | view_->RenderViewSwappedIn(new_host->GetRenderViewHost()); |
dmazzoni | 6211145 | 2017-04-28 23:46:55 | [diff] [blame] | 5716 | |
| 5717 | RenderWidgetHostViewBase* rwhv = |
| 5718 | static_cast<RenderWidgetHostViewBase*>(GetRenderWidgetHostView()); |
| 5719 | if (rwhv) |
| 5720 | rwhv->SetMainFrameAXTreeID(GetMainFrame()->GetAXTreeID()); |
[email protected] | 02d7b6e | 2014-06-24 21:01:50 | [diff] [blame] | 5721 | } |
| 5722 | |
| 5723 | NotifyFrameSwapped(old_host, new_host); |
[email protected] | 3a3d4747 | 2010-07-15 21:03:54 | [diff] [blame] | 5724 | } |
| 5725 | |
nasko | f5940b9f | 2015-03-02 23:04:05 | [diff] [blame] | 5726 | void WebContentsImpl::NotifyMainFrameSwappedFromRenderManager( |
| 5727 | RenderViewHost* old_host, |
| 5728 | RenderViewHost* new_host) { |
| 5729 | NotifyViewSwapped(old_host, new_host); |
| 5730 | } |
| 5731 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 5732 | NavigationControllerImpl& WebContentsImpl::GetControllerForRenderManager() { |
[email protected] | d1198fd | 2012-08-13 22:50:19 | [diff] [blame] | 5733 | return GetController(); |
[email protected] | 3a3d4747 | 2010-07-15 21:03:54 | [diff] [blame] | 5734 | } |
| 5735 | |
dcheng | 5971627 | 2016-04-09 05:19:08 | [diff] [blame] | 5736 | std::unique_ptr<WebUIImpl> WebContentsImpl::CreateWebUIForRenderFrameHost( |
carlosk | 37f79379 | 2014-11-27 15:08:29 | [diff] [blame] | 5737 | const GURL& url) { |
Dan Beam | 055fe8f | 2017-10-04 23:23:36 | [diff] [blame] | 5738 | return CreateWebUI(url); |
[email protected] | 420ae01 | 2009-04-24 05:16:32 | [diff] [blame] | 5739 | } |
| 5740 | |
[email protected] | 10f417c5 | 2011-12-28 21:04:23 | [diff] [blame] | 5741 | NavigationEntry* |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 5742 | WebContentsImpl::GetLastCommittedNavigationEntryForRenderManager() { |
[email protected] | 420ae01 | 2009-04-24 05:16:32 | [diff] [blame] | 5743 | return controller_.GetLastCommittedEntry(); |
| 5744 | } |
| 5745 | |
creis | adca986 | 2017-06-16 19:12:11 | [diff] [blame] | 5746 | InterstitialPageImpl* WebContentsImpl::GetInterstitialForRenderManager() { |
| 5747 | return interstitial_page_; |
| 5748 | } |
| 5749 | |
lfg | bede639 | 2015-09-11 21:54:06 | [diff] [blame] | 5750 | void WebContentsImpl::CreateRenderWidgetHostViewForRenderManager( |
| 5751 | RenderViewHost* render_view_host) { |
lfg | c740d4b2 | 2016-04-15 16:45:33 | [diff] [blame] | 5752 | RenderWidgetHostViewBase* rwh_view = |
| 5753 | view_->CreateViewForWidget(render_view_host->GetWidget(), false); |
[email protected] | 1a98a93 | 2009-11-17 00:12:52 | [diff] [blame] | 5754 | |
[email protected] | 420ae01 | 2009-04-24 05:16:32 | [diff] [blame] | 5755 | // Now that the RenderView has been created, we need to tell it its size. |
[email protected] | 245f7d5 | 2011-11-28 15:36:44 | [diff] [blame] | 5756 | if (rwh_view) |
Jianzhou Feng | d8720c7 | 2018-01-18 03:06:30 | [diff] [blame] | 5757 | rwh_view->SetSize(GetSizeForNewRenderView(true)); |
lfg | bede639 | 2015-09-11 21:54:06 | [diff] [blame] | 5758 | } |
| 5759 | |
| 5760 | bool WebContentsImpl::CreateRenderViewForRenderManager( |
| 5761 | RenderViewHost* render_view_host, |
| 5762 | int opener_frame_routing_id, |
| 5763 | int proxy_routing_id, |
Pavel Feldman | 2523472 | 2017-10-11 02:49:06 | [diff] [blame] | 5764 | const base::UnguessableToken& devtools_frame_token, |
lfg | bede639 | 2015-09-11 21:54:06 | [diff] [blame] | 5765 | const FrameReplicationState& replicated_frame_state) { |
| 5766 | TRACE_EVENT0("browser,navigation", |
| 5767 | "WebContentsImpl::CreateRenderViewForRenderManager"); |
| 5768 | |
piman | 00cf940 | 2017-04-03 17:09:20 | [diff] [blame] | 5769 | if (proxy_routing_id == MSG_ROUTING_NONE) |
lfg | 9431efd | 2016-12-14 14:45:26 | [diff] [blame] | 5770 | CreateRenderWidgetHostViewForRenderManager(render_view_host); |
lfg | 9431efd | 2016-12-14 14:45:26 | [diff] [blame] | 5771 | |
piman | 00cf940 | 2017-04-03 17:09:20 | [diff] [blame] | 5772 | if (!static_cast<RenderViewHostImpl*>(render_view_host) |
| 5773 | ->CreateRenderView(opener_frame_routing_id, proxy_routing_id, |
Pavel Feldman | 2523472 | 2017-10-11 02:49:06 | [diff] [blame] | 5774 | devtools_frame_token, replicated_frame_state, |
| 5775 | created_with_opener_)) { |
[email protected] | a412772 | 2011-04-27 23:13:52 | [diff] [blame] | 5776 | return false; |
[email protected] | 14392a5 | 2012-05-02 20:28:44 | [diff] [blame] | 5777 | } |
[email protected] | a412772 | 2011-04-27 23:13:52 | [diff] [blame] | 5778 | |
Lucas Furukawa Gadani | aed1fed | 2017-10-13 17:34:14 | [diff] [blame] | 5779 | if (proxy_routing_id == MSG_ROUTING_NONE && node_.outer_web_contents()) |
| 5780 | ReattachToOuterWebContentsFrame(); |
| 5781 | |
avi | 2b17759 | 2014-12-10 02:08:02 | [diff] [blame] | 5782 | SetHistoryOffsetAndLengthForView(render_view_host, |
| 5783 | controller_.GetLastCommittedEntryIndex(), |
| 5784 | controller_.GetEntryCount()); |
| 5785 | |
[email protected] | a220b593 | 2013-09-21 03:47:44 | [diff] [blame] | 5786 | #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID) |
[email protected] | f8233cc | 2011-05-31 20:24:50 | [diff] [blame] | 5787 | // Force a ViewMsg_Resize to be sent, needed to make plugins show up on |
| 5788 | // linux. See crbug.com/83941. |
avi | f9ab5d94 | 2015-10-15 14:05:44 | [diff] [blame] | 5789 | RenderWidgetHostView* rwh_view = render_view_host->GetWidget()->GetView(); |
[email protected] | 245f7d5 | 2011-11-28 15:36:44 | [diff] [blame] | 5790 | if (rwh_view) { |
| 5791 | if (RenderWidgetHost* render_widget_host = rwh_view->GetRenderWidgetHost()) |
Fady Samuel | 0b91182 | 2018-04-25 13:22:16 | [diff] [blame] | 5792 | render_widget_host->SynchronizeVisualProperties(); |
[email protected] | 245f7d5 | 2011-11-28 15:36:44 | [diff] [blame] | 5793 | } |
[email protected] | f8233cc | 2011-05-31 20:24:50 | [diff] [blame] | 5794 | #endif |
| 5795 | |
[email protected] | 420ae01 | 2009-04-24 05:16:32 | [diff] [blame] | 5796 | return true; |
| 5797 | } |
| 5798 | |
[email protected] | 82307f6b | 2014-08-07 03:30:12 | [diff] [blame] | 5799 | bool WebContentsImpl::CreateRenderFrameForRenderManager( |
| 5800 | RenderFrameHost* render_frame_host, |
alexmos | a181efc | 2015-09-03 00:39:04 | [diff] [blame] | 5801 | int proxy_routing_id, |
| 5802 | int opener_routing_id, |
japhet | e6adf14 | 2014-10-31 00:01:49 | [diff] [blame] | 5803 | int parent_routing_id, |
alexmos | a181efc | 2015-09-03 00:39:04 | [diff] [blame] | 5804 | int previous_sibling_routing_id) { |
nasko | b8744d2 | 2014-08-28 17:07:43 | [diff] [blame] | 5805 | TRACE_EVENT0("browser,navigation", |
| 5806 | "WebContentsImpl::CreateRenderFrameForRenderManager"); |
[email protected] | 82307f6b | 2014-08-07 03:30:12 | [diff] [blame] | 5807 | |
| 5808 | RenderFrameHostImpl* rfh = |
| 5809 | static_cast<RenderFrameHostImpl*>(render_frame_host); |
alexmos | a181efc | 2015-09-03 00:39:04 | [diff] [blame] | 5810 | if (!rfh->CreateRenderFrame(proxy_routing_id, opener_routing_id, |
| 5811 | parent_routing_id, previous_sibling_routing_id)) |
[email protected] | 82307f6b | 2014-08-07 03:30:12 | [diff] [blame] | 5812 | return false; |
| 5813 | |
| 5814 | // TODO(nasko): When RenderWidgetHost is owned by RenderFrameHost, the passed |
| 5815 | // RenderFrameHost will have to be associated with the appropriate |
| 5816 | // RenderWidgetHostView or a new one should be created here. |
| 5817 | |
| 5818 | return true; |
| 5819 | } |
| 5820 | |
mfomitchev | 2b8b066a | 2016-01-28 19:23:15 | [diff] [blame] | 5821 | #if defined(OS_ANDROID) |
[email protected] | fc2b46b | 2014-05-03 16:33:45 | [diff] [blame] | 5822 | |
[email protected] | 155c7f2 | 2013-12-09 17:07:18 | [diff] [blame] | 5823 | base::android::ScopedJavaLocalRef<jobject> |
| 5824 | WebContentsImpl::GetJavaWebContents() { |
mostynb | 042582e | 2015-03-16 22:13:40 | [diff] [blame] | 5825 | DCHECK_CURRENTLY_ON(BrowserThread::UI); |
[email protected] | 0e813a5 | 2014-08-13 10:34:56 | [diff] [blame] | 5826 | return GetWebContentsAndroid()->GetJavaObject(); |
| 5827 | } |
[email protected] | 155c7f2 | 2013-12-09 17:07:18 | [diff] [blame] | 5828 | |
[email protected] | 0e813a5 | 2014-08-13 10:34:56 | [diff] [blame] | 5829 | WebContentsAndroid* WebContentsImpl::GetWebContentsAndroid() { |
[email protected] | 155c7f2 | 2013-12-09 17:07:18 | [diff] [blame] | 5830 | WebContentsAndroid* web_contents_android = |
| 5831 | static_cast<WebContentsAndroid*>(GetUserData(kWebContentsAndroidKey)); |
| 5832 | if (!web_contents_android) { |
| 5833 | web_contents_android = new WebContentsAndroid(this); |
avi | cb129c0 | 2017-05-03 06:49:29 | [diff] [blame] | 5834 | SetUserData(kWebContentsAndroidKey, base::WrapUnique(web_contents_android)); |
[email protected] | 155c7f2 | 2013-12-09 17:07:18 | [diff] [blame] | 5835 | } |
[email protected] | 0e813a5 | 2014-08-13 10:34:56 | [diff] [blame] | 5836 | return web_contents_android; |
[email protected] | 155c7f2 | 2013-12-09 17:07:18 | [diff] [blame] | 5837 | } |
| 5838 | |
paulmeyer | c0b762b | 2016-04-13 11:55:17 | [diff] [blame] | 5839 | void WebContentsImpl::ActivateNearestFindResult(float x, |
| 5840 | float y) { |
| 5841 | GetOrCreateFindRequestManager()->ActivateNearestFindResult(x, y); |
| 5842 | } |
| 5843 | |
| 5844 | void WebContentsImpl::RequestFindMatchRects(int current_version) { |
| 5845 | GetOrCreateFindRequestManager()->RequestFindMatchRects(current_version); |
| 5846 | } |
| 5847 | |
[email protected] | 7d244f1 | 2013-08-22 21:41:51 | [diff] [blame] | 5848 | bool WebContentsImpl::CreateRenderViewForInitialEmptyDocument() { |
nasko | 4c0feb6 | 2015-06-05 18:37:06 | [diff] [blame] | 5849 | return CreateRenderViewForRenderManager( |
| 5850 | GetRenderViewHost(), MSG_ROUTING_NONE, MSG_ROUTING_NONE, |
Pavel Feldman | 2523472 | 2017-10-11 02:49:06 | [diff] [blame] | 5851 | frame_tree_.root()->devtools_frame_token(), |
lfg | bede639 | 2015-09-11 21:54:06 | [diff] [blame] | 5852 | frame_tree_.root()->current_replication_state()); |
[email protected] | 7d244f1 | 2013-08-22 21:41:51 | [diff] [blame] | 5853 | } |
[email protected] | fc2b46b | 2014-05-03 16:33:45 | [diff] [blame] | 5854 | |
rockot | 400ea35b | 2016-10-15 19:15:32 | [diff] [blame] | 5855 | service_manager::InterfaceProvider* WebContentsImpl::GetJavaInterfaces() { |
sammc | f5f1b0f | 2016-09-20 23:05:11 | [diff] [blame] | 5856 | if (!java_interfaces_) { |
rockot | 400ea35b | 2016-10-15 19:15:32 | [diff] [blame] | 5857 | service_manager::mojom::InterfaceProviderPtr provider; |
blundell | e0a9f158 | 2016-12-20 11:23:32 | [diff] [blame] | 5858 | BindInterfaceRegistryForWebContents(mojo::MakeRequest(&provider), this); |
rockot | 400ea35b | 2016-10-15 19:15:32 | [diff] [blame] | 5859 | java_interfaces_.reset(new service_manager::InterfaceProvider); |
sammc | f5f1b0f | 2016-09-20 23:05:11 | [diff] [blame] | 5860 | java_interfaces_->Bind(std::move(provider)); |
| 5861 | } |
| 5862 | return java_interfaces_.get(); |
| 5863 | } |
| 5864 | |
[email protected] | fc2b46b | 2014-05-03 16:33:45 | [diff] [blame] | 5865 | #elif defined(OS_MACOSX) |
| 5866 | |
[email protected] | 75f4df7 | 2014-07-16 22:39:42 | [diff] [blame] | 5867 | void WebContentsImpl::SetAllowOtherViews(bool allow) { |
| 5868 | view_->SetAllowOtherViews(allow); |
[email protected] | fc2b46b | 2014-05-03 16:33:45 | [diff] [blame] | 5869 | } |
| 5870 | |
[email protected] | 75f4df7 | 2014-07-16 22:39:42 | [diff] [blame] | 5871 | bool WebContentsImpl::GetAllowOtherViews() { |
| 5872 | return view_->GetAllowOtherViews(); |
[email protected] | fc2b46b | 2014-05-03 16:33:45 | [diff] [blame] | 5873 | } |
| 5874 | |
spqchan | e72c3cb | 2017-06-30 23:02:10 | [diff] [blame] | 5875 | bool WebContentsImpl::CompletedFirstVisuallyNonEmptyPaint() const { |
| 5876 | return did_first_visually_non_empty_paint_; |
| 5877 | } |
| 5878 | |
[email protected] | 7d244f1 | 2013-08-22 21:41:51 | [diff] [blame] | 5879 | #endif |
| 5880 | |
pkotwicz | 75ca8ffd | 2016-02-16 23:10:19 | [diff] [blame] | 5881 | void WebContentsImpl::OnDidDownloadImage( |
Avi Drissman | a5a52dd | 2018-03-27 03:39:02 | [diff] [blame] | 5882 | ImageDownloadCallback callback, |
pkotwicz | 75ca8ffd | 2016-02-16 23:10:19 | [diff] [blame] | 5883 | int id, |
| 5884 | const GURL& image_url, |
leon.han | cbc4bc3c | 2016-02-26 07:08:52 | [diff] [blame] | 5885 | int32_t http_status_code, |
leon.han | c222853 | 2016-08-16 05:59:18 | [diff] [blame] | 5886 | const std::vector<SkBitmap>& images, |
| 5887 | const std::vector<gfx::Size>& original_image_sizes) { |
Avi Drissman | a5a52dd | 2018-03-27 03:39:02 | [diff] [blame] | 5888 | std::move(callback).Run(id, http_status_code, image_url, images, |
| 5889 | original_image_sizes); |
pkotwicz | 75ca8ffd | 2016-02-16 23:10:19 | [diff] [blame] | 5890 | } |
| 5891 | |
[email protected] | 6fba26d | 2014-04-29 09:38:28 | [diff] [blame] | 5892 | void WebContentsImpl::OnDialogClosed(int render_process_id, |
| 5893 | int render_frame_id, |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 5894 | IPC::Message* reply_msg, |
[email protected] | 87de04b0 | 2014-04-08 22:14:49 | [diff] [blame] | 5895 | bool dialog_was_suppressed, |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 5896 | bool success, |
[email protected] | fcf75d4 | 2013-12-03 20:11:26 | [diff] [blame] | 5897 | const base::string16& user_input) { |
[email protected] | 6fba26d | 2014-04-29 09:38:28 | [diff] [blame] | 5898 | RenderFrameHostImpl* rfh = RenderFrameHostImpl::FromID(render_process_id, |
| 5899 | render_frame_id); |
[email protected] | 87de04b0 | 2014-04-08 22:14:49 | [diff] [blame] | 5900 | last_dialog_suppressed_ = dialog_was_suppressed; |
| 5901 | |
[email protected] | beb440c | 2009-11-06 04:08:54 | [diff] [blame] | 5902 | if (is_showing_before_unload_dialog_ && !success) { |
clamy | bc6f415 | 2016-04-01 20:14:23 | [diff] [blame] | 5903 | // It is possible for the current RenderFrameHost to have changed in the |
| 5904 | // meantime. Do not reset the navigation state in that case. |
| 5905 | if (rfh && rfh == rfh->frame_tree_node()->current_frame_host()) { |
clamy | 44e84ce | 2016-02-22 15:38:25 | [diff] [blame] | 5906 | rfh->frame_tree_node()->BeforeUnloadCanceled(); |
clamy | bc6f415 | 2016-04-01 20:14:23 | [diff] [blame] | 5907 | controller_.DiscardNonCommittedEntries(); |
| 5908 | } |
[email protected] | ec8e8b0 | 2013-06-19 04:57:10 | [diff] [blame] | 5909 | |
Charles Reis | 15d60b13 | 2017-11-03 17:43:47 | [diff] [blame] | 5910 | // Update the URL display either way, to avoid showing a stale URL. |
| 5911 | NotifyNavigationStateChanged(INVALIDATE_TYPE_URL); |
| 5912 | |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 5913 | for (auto& observer : observers_) |
| 5914 | observer.BeforeUnloadDialogCancelled(); |
[email protected] | beb440c | 2009-11-06 04:08:54 | [diff] [blame] | 5915 | } |
[email protected] | 87de04b0 | 2014-04-08 22:14:49 | [diff] [blame] | 5916 | |
[email protected] | 6fba26d | 2014-04-29 09:38:28 | [diff] [blame] | 5917 | if (rfh) { |
avi | 44acfaa8 | 2017-05-03 22:55:35 | [diff] [blame] | 5918 | rfh->JavaScriptDialogClosed(reply_msg, success, user_input); |
Pavel Feldman | 3c1842b | 2017-08-02 05:00:16 | [diff] [blame] | 5919 | |
| 5920 | std::vector<protocol::PageHandler*> page_handlers = |
| 5921 | protocol::PageHandler::EnabledForWebContents(this); |
| 5922 | for (auto* handler : page_handlers) |
| 5923 | handler->DidCloseJavaScriptDialog(success, user_input); |
| 5924 | |
[email protected] | 6fba26d | 2014-04-29 09:38:28 | [diff] [blame] | 5925 | } else { |
| 5926 | // Don't leak the sync IPC reply if the RFH or process is gone. |
| 5927 | delete reply_msg; |
| 5928 | } |
avi | 1c51fb6 | 2017-02-27 20:43:03 | [diff] [blame] | 5929 | |
| 5930 | is_showing_javascript_dialog_ = false; |
| 5931 | is_showing_before_unload_dialog_ = false; |
[email protected] | beb440c | 2009-11-06 04:08:54 | [diff] [blame] | 5932 | } |
| 5933 | |
[email protected] | b172aee | 2012-04-10 17:05:26 | [diff] [blame] | 5934 | void WebContentsImpl::SetEncoding(const std::string& encoding) { |
[email protected] | ef3adfc | 2014-05-11 00:04:54 | [diff] [blame] | 5935 | if (encoding == last_reported_encoding_) |
| 5936 | return; |
| 5937 | last_reported_encoding_ = encoding; |
| 5938 | |
jinsukkim | 79df88a | 2017-01-04 06:26:15 | [diff] [blame] | 5939 | canonical_encoding_ = base::GetCanonicalEncodingNameByAliasName(encoding); |
[email protected] | aacd7cc | 2009-09-02 14:51:10 | [diff] [blame] | 5940 | } |
[email protected] | f45d2a7 | 2010-03-08 23:28:35 | [diff] [blame] | 5941 | |
[email protected] | 1ac10dca | 2013-08-20 20:47:04 | [diff] [blame] | 5942 | bool WebContentsImpl::IsHidden() { |
Francois Doray | e616115 | 2018-03-27 22:05:37 | [diff] [blame] | 5943 | return !IsBeingCaptured() && visibility_ != Visibility::VISIBLE; |
[email protected] | 1ac10dca | 2013-08-20 20:47:04 | [diff] [blame] | 5944 | } |
| 5945 | |
rob | 9725074 | 2015-12-10 17:45:15 | [diff] [blame] | 5946 | int WebContentsImpl::GetOuterDelegateFrameTreeNodeId() { |
lfg | 60123369 | 2017-03-06 22:45:44 | [diff] [blame] | 5947 | return node_.outer_contents_frame_tree_node_id(); |
lazyboy | 6ec48b2a | 2015-06-29 15:18:14 | [diff] [blame] | 5948 | } |
| 5949 | |
ekaramad | aeb3c5c | 2016-11-09 03:22:35 | [diff] [blame] | 5950 | RenderWidgetHostImpl* WebContentsImpl::GetFullscreenRenderWidgetHost() const { |
| 5951 | return RenderWidgetHostImpl::FromID(fullscreen_widget_process_id_, |
| 5952 | fullscreen_widget_routing_id_); |
| 5953 | } |
| 5954 | |
[email protected] | b0936d2 | 2013-11-28 06:47:36 | [diff] [blame] | 5955 | RenderFrameHostManager* WebContentsImpl::GetRenderManager() const { |
[email protected] | fa944cb8 | 2013-11-15 17:51:21 | [diff] [blame] | 5956 | return frame_tree_.root()->render_manager(); |
| 5957 | } |
| 5958 | |
[email protected] | f849734 | 2013-02-05 22:15:02 | [diff] [blame] | 5959 | BrowserPluginGuest* WebContentsImpl::GetBrowserPluginGuest() const { |
[email protected] | 7a846df | 2012-09-20 19:17:39 | [diff] [blame] | 5960 | return browser_plugin_guest_.get(); |
| 5961 | } |
| 5962 | |
[email protected] | 738f57a | 2013-06-29 21:06:54 | [diff] [blame] | 5963 | void WebContentsImpl::SetBrowserPluginGuest(BrowserPluginGuest* guest) { |
| 5964 | CHECK(!browser_plugin_guest_); |
lazyboy | 6ec48b2a | 2015-06-29 15:18:14 | [diff] [blame] | 5965 | CHECK(guest); |
[email protected] | 738f57a | 2013-06-29 21:06:54 | [diff] [blame] | 5966 | browser_plugin_guest_.reset(guest); |
| 5967 | } |
| 5968 | |
[email protected] | f849734 | 2013-02-05 22:15:02 | [diff] [blame] | 5969 | BrowserPluginEmbedder* WebContentsImpl::GetBrowserPluginEmbedder() const { |
[email protected] | 7a846df | 2012-09-20 19:17:39 | [diff] [blame] | 5970 | return browser_plugin_embedder_.get(); |
| 5971 | } |
[email protected] | 8ff00d7 | 2012-10-23 19:12:21 | [diff] [blame] | 5972 | |
fsamuel | 60b4228 | 2015-03-10 03:29:14 | [diff] [blame] | 5973 | void WebContentsImpl::CreateBrowserPluginEmbedderIfNecessary() { |
| 5974 | if (browser_plugin_embedder_) |
| 5975 | return; |
| 5976 | browser_plugin_embedder_.reset(BrowserPluginEmbedder::Create(this)); |
| 5977 | } |
| 5978 | |
Jianzhou Feng | d8720c7 | 2018-01-18 03:06:30 | [diff] [blame] | 5979 | gfx::Size WebContentsImpl::GetSizeForNewRenderView(bool is_main_frame) { |
[email protected] | dc0fd43 | 2013-08-27 15:29:21 | [diff] [blame] | 5980 | gfx::Size size; |
Jianzhou Feng | d8720c7 | 2018-01-18 03:06:30 | [diff] [blame] | 5981 | if (is_main_frame) |
| 5982 | size = device_emulation_size_; |
| 5983 | if (size.IsEmpty() && delegate_) |
[email protected] | dc0fd43 | 2013-08-27 15:29:21 | [diff] [blame] | 5984 | size = delegate_->GetSizeForNewRenderView(this); |
| 5985 | if (size.IsEmpty()) |
[email protected] | fc2b46b | 2014-05-03 16:33:45 | [diff] [blame] | 5986 | size = GetContainerBounds().size(); |
[email protected] | dc0fd43 | 2013-08-27 15:29:21 | [diff] [blame] | 5987 | return size; |
| 5988 | } |
| 5989 | |
[email protected] | ae7eeda | 2014-07-04 01:53:26 | [diff] [blame] | 5990 | void WebContentsImpl::OnFrameRemoved(RenderFrameHost* render_frame_host) { |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 5991 | for (auto& observer : observers_) |
| 5992 | observer.FrameDeleted(render_frame_host); |
[email protected] | 9b159a5 | 2013-10-03 17:24:55 | [diff] [blame] | 5993 | } |
| 5994 | |
[email protected] | 222f582 | 2014-02-05 23:40:49 | [diff] [blame] | 5995 | void WebContentsImpl::OnPreferredSizeChanged(const gfx::Size& old_size) { |
| 5996 | if (!delegate_) |
| 5997 | return; |
| 5998 | const gfx::Size new_size = GetPreferredSize(); |
| 5999 | if (new_size != old_size) |
| 6000 | delegate_->UpdatePreferredSize(this, new_size); |
| 6001 | } |
| 6002 | |
Daniel Cheng | 90196c8 | 2018-04-25 21:49:14 | [diff] [blame] | 6003 | void WebContentsImpl::OnUserInteraction(const blink::WebInputEvent::Type type) { |
| 6004 | for (auto& observer : observers_) |
| 6005 | observer.DidGetUserInteraction(type); |
| 6006 | |
| 6007 | // TODO(https://crbug.com/827659): This used to check if type != kMouseWheel. |
| 6008 | // However, due to the caller already filtering event types, this would never |
| 6009 | // be called with type == kMouseWheel so checking for that here is pointless. |
| 6010 | // However, mouse wheel events *also* generate a kGestureScrollBegin event... |
| 6011 | // which is *not* filtered out. Maybe they should be? |
| 6012 | ResourceDispatcherHostImpl* rdh = ResourceDispatcherHostImpl::Get(); |
| 6013 | if (rdh) // null in unittests. =( |
| 6014 | rdh->OnUserGesture(); |
| 6015 | } |
| 6016 | |
Dan Beam | 055fe8f | 2017-10-04 23:23:36 | [diff] [blame] | 6017 | std::unique_ptr<WebUIImpl> WebContentsImpl::CreateWebUI(const GURL& url) { |
Jeremy Roman | 04f27c37 | 2017-10-27 15:20:55 | [diff] [blame] | 6018 | std::unique_ptr<WebUIImpl> web_ui = std::make_unique<WebUIImpl>(this); |
avi | e865b1d | 2016-10-24 19:42:59 | [diff] [blame] | 6019 | WebUIController* controller = |
| 6020 | WebUIControllerFactoryRegistry::GetInstance() |
| 6021 | ->CreateWebUIControllerForURL(web_ui.get(), url); |
dbeam | a1b926a | 2015-08-31 23:17:51 | [diff] [blame] | 6022 | if (controller) { |
Jeremy Roman | 04f27c37 | 2017-10-27 15:20:55 | [diff] [blame] | 6023 | web_ui->AddMessageHandler(std::make_unique<GenericHandler>()); |
dbeam | a1b926a | 2015-08-31 23:17:51 | [diff] [blame] | 6024 | web_ui->SetController(controller); |
| 6025 | return web_ui; |
| 6026 | } |
| 6027 | |
avi | e865b1d | 2016-10-24 19:42:59 | [diff] [blame] | 6028 | return nullptr; |
dbeam | a1b926a | 2015-08-31 23:17:51 | [diff] [blame] | 6029 | } |
| 6030 | |
paulmeyer | feafc2d | 2017-04-25 21:46:40 | [diff] [blame] | 6031 | FindRequestManager* WebContentsImpl::GetFindRequestManager() { |
| 6032 | for (WebContentsImpl* contents = this; contents; |
| 6033 | contents = contents->GetOuterWebContents()) { |
| 6034 | if (contents->find_request_manager_) |
| 6035 | return contents->find_request_manager_.get(); |
| 6036 | } |
| 6037 | |
| 6038 | return nullptr; |
| 6039 | } |
| 6040 | |
paulmeyer | c0b762b | 2016-04-13 11:55:17 | [diff] [blame] | 6041 | FindRequestManager* WebContentsImpl::GetOrCreateFindRequestManager() { |
paulmeyer | feafc2d | 2017-04-25 21:46:40 | [diff] [blame] | 6042 | if (FindRequestManager* manager = GetFindRequestManager()) |
| 6043 | return manager; |
| 6044 | |
| 6045 | // No existing FindRequestManager found, so one must be created. |
| 6046 | find_request_manager_.reset(new FindRequestManager(this)); |
| 6047 | |
| 6048 | // Concurrent find sessions must not overlap, so destroy any existing |
| 6049 | // FindRequestManagers in any inner WebContentses. |
| 6050 | for (WebContentsImpl* contents : GetWebContentsAndAllInner()) { |
| 6051 | if (contents == this) |
| 6052 | continue; |
| 6053 | if (contents->find_request_manager_) { |
| 6054 | contents->find_request_manager_->StopFinding( |
| 6055 | content::STOP_FIND_ACTION_CLEAR_SELECTION); |
| 6056 | contents->find_request_manager_.release(); |
| 6057 | } |
| 6058 | } |
paulmeyer | c0b762b | 2016-04-13 11:55:17 | [diff] [blame] | 6059 | |
| 6060 | return find_request_manager_.get(); |
| 6061 | } |
| 6062 | |
| 6063 | void WebContentsImpl::NotifyFindReply(int request_id, |
| 6064 | int number_of_matches, |
| 6065 | const gfx::Rect& selection_rect, |
| 6066 | int active_match_ordinal, |
| 6067 | bool final_update) { |
Sebastien Marchand | cf97ed5 | 2017-07-24 23:50:34 | [diff] [blame] | 6068 | if (delegate_ && !is_being_destroyed_ && |
Lukasz Anforowicz | e9ae372 | 2017-09-29 17:37:38 | [diff] [blame] | 6069 | !GetMainFrame()->GetProcess()->FastShutdownStarted()) { |
paulmeyer | c0b762b | 2016-04-13 11:55:17 | [diff] [blame] | 6070 | delegate_->FindReply(this, request_id, number_of_matches, selection_rect, |
| 6071 | active_match_ordinal, final_update); |
| 6072 | } |
| 6073 | } |
| 6074 | |
ortuno | 467e579 | 2016-06-10 04:32:39 | [diff] [blame] | 6075 | void WebContentsImpl::IncrementBluetoothConnectedDeviceCount() { |
| 6076 | // Trying to invalidate the tab state while being destroyed could result in a |
| 6077 | // use after free. |
| 6078 | if (IsBeingDestroyed()) { |
| 6079 | return; |
| 6080 | } |
| 6081 | // Notify for UI updates if the state changes. |
| 6082 | bluetooth_connected_device_count_++; |
| 6083 | if (bluetooth_connected_device_count_ == 1) { |
| 6084 | NotifyNavigationStateChanged(INVALIDATE_TYPE_TAB); |
| 6085 | } |
| 6086 | } |
| 6087 | |
| 6088 | void WebContentsImpl::DecrementBluetoothConnectedDeviceCount() { |
| 6089 | // Trying to invalidate the tab state while being destroyed could result in a |
| 6090 | // use after free. |
| 6091 | if (IsBeingDestroyed()) { |
| 6092 | return; |
| 6093 | } |
| 6094 | // Notify for UI updates if the state changes. |
Lukasz Anforowicz | e9ae372 | 2017-09-29 17:37:38 | [diff] [blame] | 6095 | DCHECK_NE(bluetooth_connected_device_count_, 0u); |
ortuno | 467e579 | 2016-06-10 04:32:39 | [diff] [blame] | 6096 | bluetooth_connected_device_count_--; |
| 6097 | if (bluetooth_connected_device_count_ == 0) { |
| 6098 | NotifyNavigationStateChanged(INVALIDATE_TYPE_TAB); |
| 6099 | } |
| 6100 | } |
| 6101 | |
zqzhang | 8ac4900 | 2017-03-16 21:51:35 | [diff] [blame] | 6102 | void WebContentsImpl::SetHasPersistentVideo(bool has_persistent_video) { |
| 6103 | if (has_persistent_video_ == has_persistent_video) |
mlamouri | 5cd9ae8 | 2017-02-18 11:05:09 | [diff] [blame] | 6104 | return; |
| 6105 | |
zqzhang | 8ac4900 | 2017-03-16 21:51:35 | [diff] [blame] | 6106 | has_persistent_video_ = has_persistent_video; |
mlamouri | 5cd9ae8 | 2017-02-18 11:05:09 | [diff] [blame] | 6107 | NotifyPreferencesChanged(); |
zqzhang | 8ac4900 | 2017-03-16 21:51:35 | [diff] [blame] | 6108 | media_web_contents_observer()->RequestPersistentVideo(has_persistent_video); |
mlamouri | 5cd9ae8 | 2017-02-18 11:05:09 | [diff] [blame] | 6109 | } |
| 6110 | |
paulmeyer | feafc2d | 2017-04-25 21:46:40 | [diff] [blame] | 6111 | void WebContentsImpl::BrowserPluginGuestWillDetach() { |
| 6112 | WebContentsImpl* outermost = GetOutermostWebContents(); |
| 6113 | if (this != outermost && ContainsOrIsFocusedWebContents()) |
| 6114 | outermost->SetAsFocusedWebContentsIfNecessary(); |
| 6115 | } |
| 6116 | |
paulmeyer | c0b762b | 2016-04-13 11:55:17 | [diff] [blame] | 6117 | #if defined(OS_ANDROID) |
| 6118 | void WebContentsImpl::NotifyFindMatchRectsReply( |
| 6119 | int version, |
| 6120 | const std::vector<gfx::RectF>& rects, |
| 6121 | const gfx::RectF& active_rect) { |
| 6122 | if (delegate_) |
| 6123 | delegate_->FindMatchRectsReply(this, version, rects, active_rect); |
| 6124 | } |
| 6125 | #endif |
| 6126 | |
[email protected] | 34ff1cfc | 2014-08-20 06:16:05 | [diff] [blame] | 6127 | void WebContentsImpl::SetForceDisableOverscrollContent(bool force_disable) { |
| 6128 | force_disable_overscroll_content_ = force_disable; |
| 6129 | if (view_) |
| 6130 | view_->SetOverscrollControllerEnabled(CanOverscrollContent()); |
| 6131 | } |
| 6132 | |
Jianzhou Feng | d8720c7 | 2018-01-18 03:06:30 | [diff] [blame] | 6133 | bool WebContentsImpl::SetDeviceEmulationSize(const gfx::Size& new_size) { |
| 6134 | device_emulation_size_ = new_size; |
| 6135 | RenderWidgetHostView* rwhv = GetMainFrame()->GetView(); |
| 6136 | |
| 6137 | const gfx::Size current_size = rwhv->GetViewBounds().size(); |
| 6138 | if (view_size_before_emulation_.IsEmpty()) |
| 6139 | view_size_before_emulation_ = current_size; |
| 6140 | |
| 6141 | if (current_size != new_size) |
| 6142 | rwhv->SetSize(new_size); |
| 6143 | |
| 6144 | return current_size != new_size; |
| 6145 | } |
| 6146 | |
| 6147 | void WebContentsImpl::ClearDeviceEmulationSize() { |
| 6148 | RenderWidgetHostView* rwhv = GetMainFrame()->GetView(); |
| 6149 | // WebContentsView could get resized during emulation, which also resizes |
| 6150 | // RWHV. If it happens, assume user would like to keep using the size after |
| 6151 | // emulation. |
| 6152 | // TODO(jzfeng): Prohibit resizing RWHV through any other means (at least when |
| 6153 | // WebContentsView size changes). |
Dmitry Gozman | c6370718 | 2018-03-06 00:09:39 | [diff] [blame] | 6154 | if (!view_size_before_emulation_.IsEmpty() && rwhv && |
| 6155 | rwhv->GetViewBounds().size() == device_emulation_size_) { |
Jianzhou Feng | d8720c7 | 2018-01-18 03:06:30 | [diff] [blame] | 6156 | rwhv->SetSize(view_size_before_emulation_); |
Dmitry Gozman | c6370718 | 2018-03-06 00:09:39 | [diff] [blame] | 6157 | } |
Jianzhou Feng | d8720c7 | 2018-01-18 03:06:30 | [diff] [blame] | 6158 | device_emulation_size_ = gfx::Size(); |
| 6159 | view_size_before_emulation_ = gfx::Size(); |
| 6160 | } |
| 6161 | |
dalecurtis | 88c24007 | 2015-12-09 02:11:18 | [diff] [blame] | 6162 | void WebContentsImpl::MediaStartedPlaying( |
billorr | 21c005d | 2016-11-17 03:57:04 | [diff] [blame] | 6163 | const WebContentsObserver::MediaPlayerInfo& media_info, |
dalecurtis | 88c24007 | 2015-12-09 02:11:18 | [diff] [blame] | 6164 | const WebContentsObserver::MediaPlayerId& id) { |
billorr | 21c005d | 2016-11-17 03:57:04 | [diff] [blame] | 6165 | if (media_info.has_video) |
| 6166 | currently_playing_video_count_++; |
| 6167 | |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 6168 | for (auto& observer : observers_) |
billorr | 21c005d | 2016-11-17 03:57:04 | [diff] [blame] | 6169 | observer.MediaStartedPlaying(media_info, id); |
dalecurtis | 88c24007 | 2015-12-09 02:11:18 | [diff] [blame] | 6170 | } |
| 6171 | |
| 6172 | void WebContentsImpl::MediaStoppedPlaying( |
billorr | 21c005d | 2016-11-17 03:57:04 | [diff] [blame] | 6173 | const WebContentsObserver::MediaPlayerInfo& media_info, |
Becca Hughes | 220bfc10 | 2017-11-14 18:24:07 | [diff] [blame] | 6174 | const WebContentsObserver::MediaPlayerId& id, |
| 6175 | WebContentsObserver::MediaStoppedReason reason) { |
billorr | 21c005d | 2016-11-17 03:57:04 | [diff] [blame] | 6176 | if (media_info.has_video) |
| 6177 | currently_playing_video_count_--; |
| 6178 | |
ericwilligers | de38634 | 2016-10-19 02:35:09 | [diff] [blame] | 6179 | for (auto& observer : observers_) |
Becca Hughes | 220bfc10 | 2017-11-14 18:24:07 | [diff] [blame] | 6180 | observer.MediaStoppedPlaying(media_info, id, reason); |
billorr | 21c005d | 2016-11-17 03:57:04 | [diff] [blame] | 6181 | } |
| 6182 | |
peconn | 25795152 | 2017-06-09 18:24:59 | [diff] [blame] | 6183 | void WebContentsImpl::MediaResized( |
| 6184 | const gfx::Size& size, |
| 6185 | const WebContentsObserver::MediaPlayerId& id) { |
| 6186 | cached_video_sizes_[id] = size; |
| 6187 | |
| 6188 | for (auto& observer : observers_) |
| 6189 | observer.MediaResized(size, id); |
| 6190 | } |
| 6191 | |
Peter E Conn | eccb34c2 | 2017-09-08 09:37:58 | [diff] [blame] | 6192 | void WebContentsImpl::MediaEffectivelyFullscreenChanged(bool is_fullscreen) { |
| 6193 | for (auto& observer : observers_) |
| 6194 | observer.MediaEffectivelyFullscreenChanged(is_fullscreen); |
| 6195 | } |
| 6196 | |
Peter Conn | 31c726a | 2017-08-17 11:07:34 | [diff] [blame] | 6197 | base::Optional<gfx::Size> WebContentsImpl::GetFullscreenVideoSize() { |
| 6198 | base::Optional<WebContentsObserver::MediaPlayerId> id = |
| 6199 | media_web_contents_observer_->GetFullscreenVideoMediaPlayerId(); |
| 6200 | if (id && cached_video_sizes_.count(id.value())) |
| 6201 | return base::Optional<gfx::Size>(cached_video_sizes_[id.value()]); |
| 6202 | return base::Optional<gfx::Size>(); |
peconn | 25795152 | 2017-06-09 18:24:59 | [diff] [blame] | 6203 | } |
| 6204 | |
billorr | 21c005d | 2016-11-17 03:57:04 | [diff] [blame] | 6205 | int WebContentsImpl::GetCurrentlyPlayingVideoCount() { |
| 6206 | return currently_playing_video_count_; |
dalecurtis | 88c24007 | 2015-12-09 02:11:18 | [diff] [blame] | 6207 | } |
| 6208 | |
Francois Doray | e616115 | 2018-03-27 22:05:37 | [diff] [blame] | 6209 | void WebContentsImpl::UpdateWebContentsVisibility(Visibility visibility) { |
Francois Doray | 3f2afbd | 2018-04-06 19:18:18 | [diff] [blame] | 6210 | // Occlusion is disabled when |features::kWebContentsOcclusion| is disabled |
| 6211 | // (for power and speed impact assessment) or when |
| 6212 | // |switches::kDisableBackgroundingOccludedWindowsForTesting| is specified on |
| 6213 | // the command line (to avoid flakiness in browser tests). |
| 6214 | const bool occlusion_is_disabled = |
| 6215 | !base::FeatureList::IsEnabled(features::kWebContentsOcclusion) || |
Francois Doray | e616115 | 2018-03-27 22:05:37 | [diff] [blame] | 6216 | base::CommandLine::ForCurrentProcess()->HasSwitch( |
| 6217 | switches::kDisableBackgroundingOccludedWindowsForTesting); |
| 6218 | if (occlusion_is_disabled && visibility == Visibility::OCCLUDED) |
| 6219 | visibility = Visibility::VISIBLE; |
| 6220 | |
tapted | 65ff2ea7 | 2016-03-01 23:39:00 | [diff] [blame] | 6221 | if (!did_first_set_visible_) { |
Francois Doray | e616115 | 2018-03-27 22:05:37 | [diff] [blame] | 6222 | if (visibility == Visibility::VISIBLE) { |
| 6223 | // A WebContents created with CreateParams::initially_hidden = false |
| 6224 | // starts with GetVisibility() == Visibility::VISIBLE even though it is |
| 6225 | // not really visible. Call WasShown() when it becomes visible for real as |
| 6226 | // the page load mechanism and some WebContentsObserver rely on that. |
tapted | 65ff2ea7 | 2016-03-01 23:39:00 | [diff] [blame] | 6227 | WasShown(); |
Francois Doray | fe4a177 | 2018-02-17 04:17:09 | [diff] [blame] | 6228 | did_first_set_visible_ = true; |
tapted | 65ff2ea7 | 2016-03-01 23:39:00 | [diff] [blame] | 6229 | } |
Francois Doray | e616115 | 2018-03-27 22:05:37 | [diff] [blame] | 6230 | |
| 6231 | // Trust the initial visibility of the WebContents and do not switch it to |
| 6232 | // HIDDEN or OCCLUDED before it becomes VISIBLE for real. Doing so would |
| 6233 | // result in destroying resources that would immediately be recreated (e.g. |
| 6234 | // UpdateWebContents(HIDDEN) can be called when a WebContents is added to a |
| 6235 | // hidden window that is about to be shown). |
| 6236 | |
tapted | 65ff2ea7 | 2016-03-01 23:39:00 | [diff] [blame] | 6237 | return; |
| 6238 | } |
Francois Doray | e616115 | 2018-03-27 22:05:37 | [diff] [blame] | 6239 | |
| 6240 | if (visibility == visibility_) |
tapted | 65ff2ea7 | 2016-03-01 23:39:00 | [diff] [blame] | 6241 | return; |
| 6242 | |
Francois Doray | e616115 | 2018-03-27 22:05:37 | [diff] [blame] | 6243 | if (visibility == Visibility::VISIBLE) |
tapted | 65ff2ea7 | 2016-03-01 23:39:00 | [diff] [blame] | 6244 | WasShown(); |
Francois Doray | e616115 | 2018-03-27 22:05:37 | [diff] [blame] | 6245 | else if (visibility == Visibility::OCCLUDED) |
| 6246 | WasOccluded(); |
tapted | 65ff2ea7 | 2016-03-01 23:39:00 | [diff] [blame] | 6247 | else |
| 6248 | WasHidden(); |
| 6249 | } |
| 6250 | |
aelias | 5252baa | 2016-04-10 01:18:02 | [diff] [blame] | 6251 | void WebContentsImpl::UpdateOverridingUserAgent() { |
mlamouri | 5cd9ae8 | 2017-02-18 11:05:09 | [diff] [blame] | 6252 | NotifyPreferencesChanged(); |
aelias | 5252baa | 2016-04-10 01:18:02 | [diff] [blame] | 6253 | } |
| 6254 | |
avi | d53461d | 2016-02-25 17:15:04 | [diff] [blame] | 6255 | void WebContentsImpl::SetJavaScriptDialogManagerForTesting( |
| 6256 | JavaScriptDialogManager* dialog_manager) { |
| 6257 | dialog_manager_ = dialog_manager; |
| 6258 | } |
| 6259 | |
rockot | f62002a | 2016-09-15 00:08:59 | [diff] [blame] | 6260 | void WebContentsImpl::RemoveBindingSet(const std::string& interface_name) { |
| 6261 | auto it = binding_sets_.find(interface_name); |
| 6262 | if (it != binding_sets_.end()) |
| 6263 | binding_sets_.erase(it); |
| 6264 | } |
| 6265 | |
nzolghadr | d87a308d | 2016-12-07 15:45:56 | [diff] [blame] | 6266 | bool WebContentsImpl::AddDomainInfoToRapporSample(rappor::Sample* sample) { |
nzolghadr | bbffc6c | 2017-05-25 17:56:39 | [diff] [blame] | 6267 | // Here we associate this metric to the main frame URL regardless of what |
| 6268 | // caused it. |
nzolghadr | d87a308d | 2016-12-07 15:45:56 | [diff] [blame] | 6269 | sample->SetStringField("Domain", ::rappor::GetDomainAndRegistrySampleFromGURL( |
| 6270 | GetLastCommittedURL())); |
nzolghadr | d87a308d | 2016-12-07 15:45:56 | [diff] [blame] | 6271 | return true; |
| 6272 | } |
| 6273 | |
nzolghadr | bbffc6c | 2017-05-25 17:56:39 | [diff] [blame] | 6274 | void WebContentsImpl::UpdateUrlForUkmSource(ukm::UkmRecorder* service, |
| 6275 | ukm::SourceId ukm_source_id) { |
| 6276 | // Here we associate this metric to the main frame URL regardless of what |
| 6277 | // caused it. |
| 6278 | service->UpdateSourceURL(ukm_source_id, GetLastCommittedURL()); |
| 6279 | } |
| 6280 | |
ekaramad | a110f64 | 2016-12-21 19:47:28 | [diff] [blame] | 6281 | void WebContentsImpl::FocusedNodeTouched(bool editable) { |
| 6282 | #if defined(OS_WIN) |
ekaramad | a110f64 | 2016-12-21 19:47:28 | [diff] [blame] | 6283 | RenderWidgetHostView* view = GetRenderWidgetHostView(); |
| 6284 | if (!view) |
| 6285 | return; |
Dave Tapuska | 2315d8f | 2018-03-06 17:52:55 | [diff] [blame] | 6286 | view->FocusedNodeTouched(editable); |
ekaramad | a110f64 | 2016-12-21 19:47:28 | [diff] [blame] | 6287 | #endif |
| 6288 | } |
| 6289 | |
samans | 90fb816 | 2017-04-04 22:30:45 | [diff] [blame] | 6290 | void WebContentsImpl::DidReceiveCompositorFrame() { |
| 6291 | for (auto& observer : observers_) |
| 6292 | observer.DidReceiveCompositorFrame(); |
| 6293 | } |
| 6294 | |
falken | 52a56e3 | 2016-12-08 05:02:40 | [diff] [blame] | 6295 | void WebContentsImpl::ShowInsecureLocalhostWarningIfNeeded() { |
| 6296 | bool allow_localhost = base::CommandLine::ForCurrentProcess()->HasSwitch( |
| 6297 | switches::kAllowInsecureLocalhost); |
| 6298 | if (!allow_localhost) |
| 6299 | return; |
| 6300 | |
| 6301 | content::NavigationEntry* entry = GetController().GetLastCommittedEntry(); |
Rob Wu | f79b3ba | 2018-01-14 01:54:31 | [diff] [blame] | 6302 | if (!entry || !net::IsLocalhost(entry->GetURL())) |
falken | 52a56e3 | 2016-12-08 05:02:40 | [diff] [blame] | 6303 | return; |
| 6304 | |
| 6305 | content::SSLStatus ssl_status = entry->GetSSL(); |
| 6306 | bool is_cert_error = net::IsCertStatusError(ssl_status.cert_status) && |
| 6307 | !net::IsCertStatusMinorError(ssl_status.cert_status); |
| 6308 | if (!is_cert_error) |
| 6309 | return; |
| 6310 | |
| 6311 | GetMainFrame()->AddMessageToConsole( |
| 6312 | content::CONSOLE_MESSAGE_LEVEL_WARNING, |
| 6313 | base::StringPrintf("This site does not have a valid SSL " |
| 6314 | "certificate! Without SSL, your site's and " |
| 6315 | "visitors' data is vulnerable to theft and " |
| 6316 | "tampering. Get a valid SSL certificate before" |
| 6317 | " releasing your website to the public.")); |
| 6318 | } |
| 6319 | |
ekaramad | f6750aa | 2017-06-06 18:29:42 | [diff] [blame] | 6320 | bool WebContentsImpl::IsShowingContextMenuOnPage() const { |
| 6321 | return showing_context_menu_; |
| 6322 | } |
| 6323 | |
Min Qin | a904f330 | 2018-02-13 23:33:34 | [diff] [blame] | 6324 | download::DownloadUrlParameters::RequestHeadersType |
| 6325 | WebContentsImpl::ParseDownloadHeaders(const std::string& headers) { |
| 6326 | download::DownloadUrlParameters::RequestHeadersType request_headers; |
Megan Jablonski | 2f6a4c5 | 2017-07-10 23:01:25 | [diff] [blame] | 6327 | for (const base::StringPiece& key_value : base::SplitStringPiece( |
| 6328 | headers, "\r\n", base::TRIM_WHITESPACE, base::SPLIT_WANT_NONEMPTY)) { |
| 6329 | std::vector<std::string> pair = base::SplitString( |
| 6330 | key_value, ":", base::TRIM_WHITESPACE, base::SPLIT_WANT_ALL); |
| 6331 | if (2ul == pair.size()) |
| 6332 | request_headers.push_back(make_pair(pair[0], pair[1])); |
| 6333 | } |
| 6334 | return request_headers; |
| 6335 | } |
| 6336 | |
lukasza | 6f8ac62 | 2017-06-06 03:10:20 | [diff] [blame] | 6337 | void WebContentsImpl::SetOpenerForNewContents(FrameTreeNode* opener, |
| 6338 | bool opener_suppressed) { |
| 6339 | if (opener) { |
| 6340 | FrameTreeNode* new_root = GetFrameTree()->root(); |
| 6341 | |
| 6342 | // For the "original opener", track the opener's main frame instead, because |
| 6343 | // if the opener is a subframe, the opener tracking could be easily bypassed |
| 6344 | // by spawning from a subframe and deleting the subframe. |
| 6345 | // https://crbug.com/705316 |
| 6346 | new_root->SetOriginalOpener(opener->frame_tree()->root()); |
| 6347 | |
| 6348 | if (!opener_suppressed) { |
| 6349 | new_root->SetOpener(opener); |
| 6350 | created_with_opener_ = true; |
| 6351 | } |
| 6352 | } |
| 6353 | } |
| 6354 | |
Becca Hughes | 9f6fd4b8 | 2017-06-15 10:01:40 | [diff] [blame] | 6355 | void WebContentsImpl::MediaMutedStatusChanged( |
| 6356 | const WebContentsObserver::MediaPlayerId& id, |
| 6357 | bool muted) { |
| 6358 | for (auto& observer : observers_) |
| 6359 | observer.MediaMutedStatusChanged(id, muted); |
| 6360 | } |
| 6361 | |
EhsanK | 2075c7e | 2017-08-21 02:42:39 | [diff] [blame] | 6362 | void WebContentsImpl::SetVisibilityForChildViews(bool visible) { |
| 6363 | GetMainFrame()->SetVisibilityForChildViews(visible); |
| 6364 | } |
| 6365 | |
[email protected] | 8ff00d7 | 2012-10-23 19:12:21 | [diff] [blame] | 6366 | } // namespace content |