2014-09-04 17:53:40 +00:00
|
|
|
diff --git Source/web/ChromeClientImpl.cpp Source/web/ChromeClientImpl.cpp
|
2015-11-10 15:18:16 -05:00
|
|
|
index 499991c..b5d6d32 100644
|
2014-09-04 17:53:40 +00:00
|
|
|
--- Source/web/ChromeClientImpl.cpp
|
|
|
|
+++ Source/web/ChromeClientImpl.cpp
|
2015-11-10 15:18:16 -05:00
|
|
|
@@ -809,7 +809,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-11-10 15:18:16 -05:00
|
|
|
index c97a89c..6d2fb40 100644
|
2014-09-04 17:53:40 +00:00
|
|
|
--- Source/web/WebViewImpl.cpp
|
|
|
|
+++ Source/web/WebViewImpl.cpp
|
2015-11-10 15:18:16 -05:00
|
|
|
@@ -418,6 +418,7 @@ WebViewImpl::WebViewImpl(WebViewClient* client)
|
2015-10-09 11:23:12 -04:00
|
|
|
, 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-11-10 15:18:16 -05:00
|
|
|
index 09b718d..a1bc2ffc 100644
|
2014-09-04 17:53:40 +00:00
|
|
|
--- Source/web/WebViewImpl.h
|
|
|
|
+++ Source/web/WebViewImpl.h
|
2015-11-10 15:18:16 -05:00
|
|
|
@@ -389,7 +389,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-11-10 15:18:16 -05:00
|
|
|
@@ -670,6 +671,8 @@ private:
|
2015-10-09 11:23:12 -04:00
|
|
|
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-11-10 15:18:16 -05:00
|
|
|
index 83d8c13..350bca4 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;
|