Changeset 221022 in webkit
- Timestamp:
- Aug 22, 2017, 10:38:14 AM (8 years ago)
- Location:
- trunk/Source
- Files:
-
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r221020 r221022 1 2017-08-22 Alex Christensen <achristensen@webkit.org> 2 3 Remove ChromeClient::hasOpenedPopup 4 https://bugs.webkit.org/show_bug.cgi?id=175804 5 6 Reviewed by Sam Weinig. 7 8 No change in behavior. All implementations just returned false. 9 10 * loader/EmptyClients.h: 11 * page/Chrome.cpp: 12 (WebCore::Chrome::hasOpenedPopup const): Deleted. 13 * page/Chrome.h: 14 * page/ChromeClient.h: 15 * rendering/RenderMenuList.cpp: 16 (RenderMenuList::showPopup): 17 1 18 2017-08-22 Andy Estes <aestes@apple.com> 2 19 -
trunk/Source/WebCore/loader/EmptyClients.h
r217862 r221022 95 95 bool selectItemWritingDirectionIsNatural() final { return false; } 96 96 bool selectItemAlignmentFollowsMenuWritingDirection() final { return false; } 97 bool hasOpenedPopup() const final { return false; }98 97 RefPtr<PopupMenu> createPopupMenu(PopupMenuClient&) const final; 99 98 RefPtr<SearchPopupMenu> createSearchPopupMenu(PopupMenuClient&) const final; -
trunk/Source/WebCore/page/Chrome.cpp
r217862 r221022 522 522 } 523 523 524 bool Chrome::hasOpenedPopup() const525 {526 return m_client.hasOpenedPopup();527 }528 529 524 RefPtr<PopupMenu> Chrome::createPopupMenu(PopupMenuClient& client) const 530 525 { -
trunk/Source/WebCore/page/Chrome.h
r218665 r221022 168 168 bool selectItemWritingDirectionIsNatural(); 169 169 bool selectItemAlignmentFollowsMenuWritingDirection(); 170 bool hasOpenedPopup() const;171 170 RefPtr<PopupMenu> createPopupMenu(PopupMenuClient&) const; 172 171 RefPtr<SearchPopupMenu> createSearchPopupMenu(PopupMenuClient&) const; -
trunk/Source/WebCore/page/ChromeClient.h
r218665 r221022 382 382 virtual bool selectItemAlignmentFollowsMenuWritingDirection() = 0; 383 383 // Checks if there is an opened popup, called by RenderMenuList::showPopup(). 384 virtual bool hasOpenedPopup() const = 0;385 384 virtual RefPtr<PopupMenu> createPopupMenu(PopupMenuClient&) const = 0; 386 385 virtual RefPtr<SearchPopupMenu> createSearchPopupMenu(PopupMenuClient&) const = 0; -
trunk/Source/WebCore/rendering/RenderMenuList.cpp
r214173 r221022 371 371 return; 372 372 373 if (document().page()->chrome().hasOpenedPopup())374 return;375 376 373 // Create m_innerBlock here so it ends up as the first child. 377 374 // This is important because otherwise we might try to create m_innerBlock -
trunk/Source/WebKit/ChangeLog
r221017 r221022 1 2017-08-22 Alex Christensen <achristensen@webkit.org> 2 3 Remove ChromeClient::hasOpenedPopup 4 https://bugs.webkit.org/show_bug.cgi?id=175804 5 6 Reviewed by Sam Weinig. 7 8 * WebProcess/WebCoreSupport/WebChromeClient.cpp: 9 (WebKit::WebChromeClient::hasOpenedPopup const): Deleted. 10 * WebProcess/WebCoreSupport/WebChromeClient.h: 11 1 12 2017-08-22 Brent Fulgham <bfulgham@apple.com> and Pranjal Jumde <pjumde@apple.com> 2 13 -
trunk/Source/WebKit/WebProcess/WebCoreSupport/WebChromeClient.cpp
r219996 r221022 829 829 } 830 830 831 bool WebChromeClient::hasOpenedPopup() const832 {833 notImplemented();834 return false;835 }836 837 831 RefPtr<PopupMenu> WebChromeClient::createPopupMenu(PopupMenuClient& client) const 838 832 { -
trunk/Source/WebKit/WebProcess/WebCoreSupport/WebChromeClient.h
r218535 r221022 200 200 bool selectItemWritingDirectionIsNatural() final; 201 201 bool selectItemAlignmentFollowsMenuWritingDirection() final; 202 bool hasOpenedPopup() const final;203 202 RefPtr<WebCore::PopupMenu> createPopupMenu(WebCore::PopupMenuClient&) const final; 204 203 RefPtr<WebCore::SearchPopupMenu> createSearchPopupMenu(WebCore::PopupMenuClient&) const final; -
trunk/Source/WebKitLegacy/mac/ChangeLog
r221017 r221022 1 2017-08-22 Alex Christensen <achristensen@webkit.org> 2 3 Remove ChromeClient::hasOpenedPopup 4 https://bugs.webkit.org/show_bug.cgi?id=175804 5 6 Reviewed by Sam Weinig. 7 8 * WebCoreSupport/WebChromeClient.h: 9 * WebCoreSupport/WebChromeClient.mm: 10 (WebChromeClient::hasOpenedPopup const): Deleted. 11 1 12 2017-08-22 Brent Fulgham <bfulgham@apple.com> and Pranjal Jumde <pjumde@apple.com> 2 13 -
trunk/Source/WebKitLegacy/mac/WebCoreSupport/WebChromeClient.h
r216245 r221022 199 199 bool selectItemWritingDirectionIsNatural() override; 200 200 bool selectItemAlignmentFollowsMenuWritingDirection() override; 201 bool hasOpenedPopup() const final;202 201 RefPtr<WebCore::PopupMenu> createPopupMenu(WebCore::PopupMenuClient&) const override; 203 202 RefPtr<WebCore::SearchPopupMenu> createSearchPopupMenu(WebCore::PopupMenuClient&) const override; -
trunk/Source/WebKitLegacy/mac/WebCoreSupport/WebChromeClient.mm
r216816 r221022 877 877 } 878 878 879 bool WebChromeClient::hasOpenedPopup() const880 {881 notImplemented();882 return false;883 }884 885 879 RefPtr<WebCore::PopupMenu> WebChromeClient::createPopupMenu(WebCore::PopupMenuClient& client) const 886 880 { -
trunk/Source/WebKitLegacy/win/ChangeLog
r220930 r221022 1 2017-08-22 Alex Christensen <achristensen@webkit.org> 2 3 Remove ChromeClient::hasOpenedPopup 4 https://bugs.webkit.org/show_bug.cgi?id=175804 5 6 Reviewed by Sam Weinig. 7 8 * WebCoreSupport/WebChromeClient.cpp: 9 (WebChromeClient::hasOpenedPopup const): Deleted. 10 * WebCoreSupport/WebChromeClient.h: 11 1 12 2017-08-18 Per Arne Vollan <pvollan@apple.com> 2 13 -
trunk/Source/WebKitLegacy/win/WebCoreSupport/WebChromeClient.cpp
r216641 r221022 781 781 } 782 782 783 bool WebChromeClient::hasOpenedPopup() const784 {785 notImplemented();786 return false;787 }788 789 783 RefPtr<PopupMenu> WebChromeClient::createPopupMenu(PopupMenuClient& client) const 790 784 { -
trunk/Source/WebKitLegacy/win/WebCoreSupport/WebChromeClient.h
r216823 r221022 151 151 bool selectItemWritingDirectionIsNatural() final; 152 152 bool selectItemAlignmentFollowsMenuWritingDirection() final; 153 bool hasOpenedPopup() const final;154 153 RefPtr<WebCore::PopupMenu> createPopupMenu(WebCore::PopupMenuClient&) const final; 155 154 RefPtr<WebCore::SearchPopupMenu> createSearchPopupMenu(WebCore::PopupMenuClient&) const final;
Note:
See TracChangeset
for help on using the changeset viewer.