Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(364)

Unified Diff: Source/web/WebPagePopupImpl.cpp

Issue 197213011: Selectively disable rubber banding on mac. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/web/WebPagePopupImpl.cpp
diff --git a/Source/web/WebPagePopupImpl.cpp b/Source/web/WebPagePopupImpl.cpp
index 2a20ed18409e8d8d0bbcf23b2fd8e4d82141eea5..bc2a98f9007784f2e13bd9af45635aeb62015741 100644
--- a/Source/web/WebPagePopupImpl.cpp
+++ b/Source/web/WebPagePopupImpl.cpp
@@ -370,7 +370,7 @@ bool WebPagePopupImpl::handleInputEvent(const WebInputEvent& event)
{
if (m_closing)
return false;
- return PageWidgetDelegate::handleInputEvent(m_page.get(), *this, event);
+ return PageWidgetDelegate::handleInputEvent(m_page.get(), *this, event, true, true);
}
bool WebPagePopupImpl::handleKeyEvent(const PlatformKeyboardEvent& event)

Powered by Google App Engine
This is Rietveld 408576698