Index: Source/WebCore/platform/chromium/PopupContainer.cpp |
=================================================================== |
--- Source/WebCore/platform/chromium/PopupContainer.cpp (revision 146131) |
+++ Source/WebCore/platform/chromium/PopupContainer.cpp (working copy) |
@@ -271,14 +271,14 @@ |
bool PopupContainer::handleMouseDownEvent(const PlatformMouseEvent& event) |
{ |
- UserGestureIndicator gestureIndicator(DefinitelyProcessingUserGesture); |
+ UserGestureIndicator gestureIndicator(DefinitelyProcessingNewUserGesture); |
return m_listBox->handleMouseDownEvent( |
constructRelativeMouseEvent(event, this, m_listBox.get())); |
} |
bool PopupContainer::handleMouseMoveEvent(const PlatformMouseEvent& event) |
{ |
- UserGestureIndicator gestureIndicator(DefinitelyProcessingUserGesture); |
+ UserGestureIndicator gestureIndicator(DefinitelyProcessingNewUserGesture); |
return m_listBox->handleMouseMoveEvent( |
constructRelativeMouseEvent(event, this, m_listBox.get())); |
} |
@@ -286,14 +286,14 @@ |
bool PopupContainer::handleMouseReleaseEvent(const PlatformMouseEvent& event) |
{ |
RefPtr<PopupContainer> protect(this); |
- UserGestureIndicator gestureIndicator(DefinitelyProcessingUserGesture); |
+ UserGestureIndicator gestureIndicator(DefinitelyProcessingNewUserGesture); |
return m_listBox->handleMouseReleaseEvent( |
constructRelativeMouseEvent(event, this, m_listBox.get())); |
} |
bool PopupContainer::handleWheelEvent(const PlatformWheelEvent& event) |
{ |
- UserGestureIndicator gestureIndicator(DefinitelyProcessingUserGesture); |
+ UserGestureIndicator gestureIndicator(DefinitelyProcessingNewUserGesture); |
return m_listBox->handleWheelEvent( |
constructRelativeWheelEvent(event, this, m_listBox.get())); |
} |
@@ -340,7 +340,7 @@ |
bool PopupContainer::handleKeyEvent(const PlatformKeyboardEvent& event) |
{ |
- UserGestureIndicator gestureIndicator(DefinitelyProcessingUserGesture); |
+ UserGestureIndicator gestureIndicator(DefinitelyProcessingNewUserGesture); |
return m_listBox->handleKeyEvent(event); |
} |