2014-09-04 17:53:40 +00:00
|
|
|
diff --git Source/web/ChromeClientImpl.cpp Source/web/ChromeClientImpl.cpp
|
2015-10-09 11:23:12 -04:00
|
|
|
index 5577228..74ccf53 100644
|
2014-09-04 17:53:40 +00:00
|
|
|
--- Source/web/ChromeClientImpl.cpp
|
|
|
|
+++ Source/web/ChromeClientImpl.cpp
|
2015-10-09 11:23:12 -04:00
|
|
|
@@ -814,7 +814,7 @@ bool ChromeClientImpl::hasOpenedPopup() const
|
2015-08-14 10:41:08 -04:00
|
|
|
PassRefPtrWillBeRawPtr<PopupMenu> ChromeClientImpl::openPopupMenu(LocalFrame& frame, HTMLSelectElement& select)
|
2014-06-30 22:30:29 +00:00
|
|
|
{
|
2015-06-05 18:06:48 -04:00
|
|
|
notifyPopupOpeningObservers();
|
2014-06-30 22:30:29 +00:00
|
|
|
- if (WebViewImpl::useExternalPopupMenus())
|
|
|
|
+ if (m_webView->useExternalPopupMenus())
|
2015-08-14 10:41:08 -04:00
|
|
|
return adoptRefWillBeNoop(new ExternalPopupMenu(frame, select, *m_webView));
|
2014-06-30 22:30:29 +00:00
|
|
|
|
2015-06-05 18:06:48 -04:00
|
|
|
ASSERT(RuntimeEnabledFeatures::pagePopupEnabled());
|
2014-09-04 17:53:40 +00:00
|
|
|
diff --git Source/web/WebViewImpl.cpp Source/web/WebViewImpl.cpp
|
2015-10-09 11:23:12 -04:00
|
|
|
index b708684..769c127 100644
|
2014-09-04 17:53:40 +00:00
|
|
|
--- Source/web/WebViewImpl.cpp
|
|
|
|
+++ Source/web/WebViewImpl.cpp
|
2015-10-09 11:23:12 -04:00
|
|
|
@@ -421,6 +421,7 @@ WebViewImpl::WebViewImpl(WebViewClient* client)
|
|
|
|
, m_enableFakePageScaleAnimationForTesting(false)
|
2014-06-30 22:30:29 +00:00
|
|
|
, m_fakePageScaleAnimationPageScaleFactor(0)
|
|
|
|
, m_fakePageScaleAnimationUseAnchor(false)
|
|
|
|
+ , m_shouldUseExternalPopupMenus(shouldUseExternalPopupMenus)
|
|
|
|
, m_doingDragAndDrop(false)
|
|
|
|
, m_ignoreInputEvents(false)
|
|
|
|
, m_compositorDeviceScaleFactorOverride(0)
|
2015-10-09 11:23:12 -04:00
|
|
|
@@ -4018,9 +4019,14 @@ void WebViewImpl::pageScaleFactorChanged()
|
2015-03-19 18:06:16 -04:00
|
|
|
m_client->pageScaleFactorChanged();
|
2014-06-30 22:30:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
+void WebViewImpl::setUseExternalPopupMenusThisInstance(bool useExternalPopupMenus)
|
|
|
|
+{
|
|
|
|
+ m_shouldUseExternalPopupMenus = useExternalPopupMenus;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
bool WebViewImpl::useExternalPopupMenus()
|
|
|
|
{
|
|
|
|
- return shouldUseExternalPopupMenus;
|
|
|
|
+ return m_shouldUseExternalPopupMenus;
|
|
|
|
}
|
|
|
|
|
|
|
|
void WebViewImpl::startDragging(LocalFrame* frame,
|
2014-09-04 17:53:40 +00:00
|
|
|
diff --git Source/web/WebViewImpl.h Source/web/WebViewImpl.h
|
2015-10-09 11:23:12 -04:00
|
|
|
index a1f3e54..24f60a9 100644
|
2014-09-04 17:53:40 +00:00
|
|
|
--- Source/web/WebViewImpl.h
|
|
|
|
+++ Source/web/WebViewImpl.h
|
2015-10-09 11:23:12 -04:00
|
|
|
@@ -393,7 +393,8 @@ public:
|
2014-06-30 22:30:29 +00:00
|
|
|
|
|
|
|
// 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);
|
|
|
|
+ bool useExternalPopupMenus();
|
|
|
|
|
2015-10-09 11:23:12 -04:00
|
|
|
bool shouldAutoResize() const
|
2014-06-30 22:30:29 +00:00
|
|
|
{
|
2015-10-09 11:23:12 -04:00
|
|
|
@@ -671,6 +672,8 @@ private:
|
|
|
|
float m_fakePageScaleAnimationPageScaleFactor;
|
|
|
|
bool m_fakePageScaleAnimationUseAnchor;
|
2014-06-30 22:30:29 +00:00
|
|
|
|
|
|
|
+ bool m_shouldUseExternalPopupMenus;
|
|
|
|
+
|
|
|
|
bool m_doingDragAndDrop;
|
|
|
|
|
|
|
|
bool m_ignoreInputEvents;
|
2014-09-04 17:53:40 +00:00
|
|
|
diff --git public/web/WebView.h public/web/WebView.h
|
2015-10-09 11:23:12 -04:00
|
|
|
index 1bce1b2..3ea51c1 100644
|
2014-09-04 17:53:40 +00:00
|
|
|
--- public/web/WebView.h
|
|
|
|
+++ public/web/WebView.h
|
2015-10-09 11:23:12 -04:00
|
|
|
@@ -400,6 +400,7 @@ public:
|
2014-09-04 17:53:40 +00:00
|
|
|
|
|
|
|
// Sets whether select popup menus should be rendered by the browser.
|
|
|
|
BLINK_EXPORT static void setUseExternalPopupMenus(bool);
|
|
|
|
+ virtual void setUseExternalPopupMenusThisInstance(bool) = 0;
|
|
|
|
|
|
|
|
// Hides any popup (suggestions, selects...) that might be showing.
|
|
|
|
virtual void hidePopups() = 0;
|