| Index: blimp/client/core/input/blimp_input_manager.cc
|
| diff --git a/blimp/client/core/input/blimp_input_manager.cc b/blimp/client/core/input/blimp_input_manager.cc
|
| index 0d4702aba378bf9dac15067da1c9dc276a9139da..000db1d8016ff626534341957549afd711c5347e 100644
|
| --- a/blimp/client/core/input/blimp_input_manager.cc
|
| +++ b/blimp/client/core/input/blimp_input_manager.cc
|
| @@ -79,8 +79,8 @@ void BlimpInputManager::OnGestureEvent(const ui::GestureEventData& gesture) {
|
| // to stop providing shift meta values to synthetic MotionEvents. This
|
| // prevents unintended shift+click interpretation of all accessibility clicks.
|
| // See crbug.com/443247.
|
| - if (web_gesture.type == blink::WebInputEvent::GestureTap &&
|
| - web_gesture.modifiers == blink::WebInputEvent::ShiftKey) {
|
| + if (web_gesture.type() == blink::WebInputEvent::GestureTap &&
|
| + web_gesture.modifiers() == blink::WebInputEvent::ShiftKey) {
|
| web_gesture.setModifiers(blink::WebInputEvent::NoModifiers);
|
| }
|
|
|
|
|