2021-07-23 18:40:13 +02:00
|
|
|
diff --git third_party/blink/public/web/web_view.h third_party/blink/public/web/web_view.h
|
2022-03-26 02:12:30 +01:00
|
|
|
index 560b72dfbc701..b63918a20ed0a 100644
|
2021-07-23 18:40:13 +02:00
|
|
|
--- third_party/blink/public/web/web_view.h
|
|
|
|
+++ third_party/blink/public/web/web_view.h
|
2022-03-26 02:12:30 +01:00
|
|
|
@@ -341,6 +341,7 @@ class WebView {
|
2021-07-23 18:40:13 +02:00
|
|
|
|
|
|
|
// Sets whether select popup menus should be rendered by the browser.
|
|
|
|
BLINK_EXPORT static void SetUseExternalPopupMenus(bool);
|
|
|
|
+ virtual void SetUseExternalPopupMenusThisInstance(bool) = 0;
|
|
|
|
|
|
|
|
// Cancels and hides the current popup (datetime, select...) if any.
|
|
|
|
virtual void CancelPagePopup() = 0;
|
|
|
|
diff --git third_party/blink/renderer/core/exported/web_view_impl.cc third_party/blink/renderer/core/exported/web_view_impl.cc
|
2022-03-26 02:12:30 +01:00
|
|
|
index 6aa72717b2576..c05663723089a 100644
|
2021-07-23 18:40:13 +02:00
|
|
|
--- third_party/blink/renderer/core/exported/web_view_impl.cc
|
|
|
|
+++ third_party/blink/renderer/core/exported/web_view_impl.cc
|
2022-01-25 21:26:51 +01:00
|
|
|
@@ -247,8 +247,13 @@ void WebView::SetUseExternalPopupMenus(bool use_external_popup_menus) {
|
2021-07-23 18:40:13 +02:00
|
|
|
g_should_use_external_popup_menus = use_external_popup_menus;
|
|
|
|
}
|
|
|
|
|
|
|
|
-bool WebViewImpl::UseExternalPopupMenus() {
|
|
|
|
- return g_should_use_external_popup_menus;
|
|
|
|
+void WebViewImpl::SetUseExternalPopupMenusThisInstance(
|
|
|
|
+ bool use_external_popup_menus) {
|
|
|
|
+ should_use_external_popup_menus_ = use_external_popup_menus;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
+bool WebViewImpl::UseExternalPopupMenus() const {
|
|
|
|
+ return should_use_external_popup_menus_;
|
|
|
|
}
|
|
|
|
|
|
|
|
namespace {
|
2022-02-21 23:23:40 +01:00
|
|
|
@@ -559,6 +564,7 @@ WebViewImpl::WebViewImpl(
|
2021-07-23 18:40:13 +02:00
|
|
|
chrome_client_(MakeGarbageCollected<ChromeClientImpl>(this)),
|
|
|
|
minimum_zoom_level_(PageZoomFactorToZoomLevel(kMinimumPageZoomFactor)),
|
|
|
|
maximum_zoom_level_(PageZoomFactorToZoomLevel(kMaximumPageZoomFactor)),
|
|
|
|
+ should_use_external_popup_menus_(g_should_use_external_popup_menus),
|
|
|
|
does_composite_(does_composite),
|
|
|
|
fullscreen_controller_(std::make_unique<FullscreenController>(this)),
|
|
|
|
page_base_background_color_(
|
|
|
|
diff --git third_party/blink/renderer/core/exported/web_view_impl.h third_party/blink/renderer/core/exported/web_view_impl.h
|
2022-02-21 23:23:40 +01:00
|
|
|
index 5107ef421138e..7660b1c3287c1 100644
|
2021-07-23 18:40:13 +02:00
|
|
|
--- third_party/blink/renderer/core/exported/web_view_impl.h
|
|
|
|
+++ third_party/blink/renderer/core/exported/web_view_impl.h
|
2022-02-21 23:23:40 +01:00
|
|
|
@@ -134,7 +134,8 @@ class CORE_EXPORT WebViewImpl final : public WebView,
|
2021-07-23 18:40:13 +02:00
|
|
|
static HashSet<WebViewImpl*>& AllInstances();
|
|
|
|
// Returns true if popup menus should be rendered by the browser, false if
|
|
|
|
// they should be rendered by WebKit (which is the default).
|
|
|
|
- static bool UseExternalPopupMenus();
|
|
|
|
+ void SetUseExternalPopupMenusThisInstance(bool) override;
|
|
|
|
+ bool UseExternalPopupMenus() const;
|
|
|
|
|
|
|
|
// Returns whether frames under this WebView are backed by a compositor.
|
|
|
|
bool does_composite() const { return does_composite_; }
|
2022-02-21 23:23:40 +01:00
|
|
|
@@ -801,6 +802,8 @@ class CORE_EXPORT WebViewImpl final : public WebView,
|
2021-07-23 18:40:13 +02:00
|
|
|
float fake_page_scale_animation_page_scale_factor_ = 0.f;
|
|
|
|
bool fake_page_scale_animation_use_anchor_ = false;
|
|
|
|
|
|
|
|
+ bool should_use_external_popup_menus_;
|
|
|
|
+
|
|
|
|
float compositor_device_scale_factor_override_ = 0.f;
|
|
|
|
TransformationMatrix device_emulation_transform_;
|
|
|
|
|
|
|
|
diff --git third_party/blink/renderer/core/page/chrome_client_impl.cc third_party/blink/renderer/core/page/chrome_client_impl.cc
|
2022-02-21 23:23:40 +01:00
|
|
|
index dc5f2b7966770..ac01b405f144f 100644
|
2021-07-23 18:40:13 +02:00
|
|
|
--- third_party/blink/renderer/core/page/chrome_client_impl.cc
|
|
|
|
+++ third_party/blink/renderer/core/page/chrome_client_impl.cc
|
2022-02-21 23:23:40 +01:00
|
|
|
@@ -904,7 +904,7 @@ bool ChromeClientImpl::HasOpenedPopup() const {
|
2021-07-23 18:40:13 +02:00
|
|
|
PopupMenu* ChromeClientImpl::OpenPopupMenu(LocalFrame& frame,
|
|
|
|
HTMLSelectElement& select) {
|
|
|
|
NotifyPopupOpeningObservers();
|
|
|
|
- if (WebViewImpl::UseExternalPopupMenus())
|
|
|
|
+ if (web_view_->UseExternalPopupMenus())
|
|
|
|
return MakeGarbageCollected<ExternalPopupMenu>(frame, select);
|
|
|
|
|
|
|
|
DCHECK(RuntimeEnabledFeatures::PagePopupEnabled());
|