| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2014 Opera Software ASA. All rights reserved. | 3 * Copyright (C) 2014 Opera Software ASA. All rights reserved. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
| 7 * met: | 7 * met: |
| 8 * | 8 * |
| 9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
| 10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
| (...skipping 749 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 760 dragLocation, dragScreenLocation); | 760 dragLocation, dragScreenLocation); |
| 761 } | 761 } |
| 762 | 762 |
| 763 void WebPluginContainerImpl::handleWheelEvent(WheelEvent* event) { | 763 void WebPluginContainerImpl::handleWheelEvent(WheelEvent* event) { |
| 764 WebFloatPoint absoluteRootFrameLocation = | 764 WebFloatPoint absoluteRootFrameLocation = |
| 765 event->nativeEvent().positionInRootFrame(); | 765 event->nativeEvent().positionInRootFrame(); |
| 766 IntPoint localPoint = | 766 IntPoint localPoint = |
| 767 roundedIntPoint(m_element->layoutObject()->absoluteToLocal( | 767 roundedIntPoint(m_element->layoutObject()->absoluteToLocal( |
| 768 absoluteRootFrameLocation, UseTransforms)); | 768 absoluteRootFrameLocation, UseTransforms)); |
| 769 WebMouseWheelEvent translatedEvent = event->nativeEvent().flattenTransform(); | 769 WebMouseWheelEvent translatedEvent = event->nativeEvent().flattenTransform(); |
| 770 translatedEvent.x = localPoint.x(); | 770 translatedEvent.position.x = localPoint.x(); |
| 771 translatedEvent.y = localPoint.y(); | 771 translatedEvent.position.y = localPoint.y(); |
| 772 | 772 |
| 773 WebCursorInfo cursorInfo; | 773 WebCursorInfo cursorInfo; |
| 774 if (m_webPlugin->handleInputEvent(translatedEvent, cursorInfo) != | 774 if (m_webPlugin->handleInputEvent(translatedEvent, cursorInfo) != |
| 775 WebInputEventResult::NotHandled) | 775 WebInputEventResult::NotHandled) |
| 776 event->setDefaultHandled(); | 776 event->setDefaultHandled(); |
| 777 } | 777 } |
| 778 | 778 |
| 779 void WebPluginContainerImpl::handleKeyboardEvent(KeyboardEvent* event) { | 779 void WebPluginContainerImpl::handleKeyboardEvent(KeyboardEvent* event) { |
| 780 WebKeyboardEventBuilder webEvent(*event); | 780 WebKeyboardEventBuilder webEvent(*event); |
| 781 if (webEvent.type() == WebInputEvent::Undefined) | 781 if (webEvent.type() == WebInputEvent::Undefined) |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 986 // frame view. | 986 // frame view. |
| 987 computeClipRectsForPlugin(m_element, windowRect, clipRect, unobscuredRect); | 987 computeClipRectsForPlugin(m_element, windowRect, clipRect, unobscuredRect); |
| 988 } | 988 } |
| 989 getPluginOcclusions(m_element, this->parent(), frameRect(), cutOutRects); | 989 getPluginOcclusions(m_element, this->parent(), frameRect(), cutOutRects); |
| 990 // Convert to the plugin position. | 990 // Convert to the plugin position. |
| 991 for (size_t i = 0; i < cutOutRects.size(); i++) | 991 for (size_t i = 0; i < cutOutRects.size(); i++) |
| 992 cutOutRects[i].move(-frameRect().x(), -frameRect().y()); | 992 cutOutRects[i].move(-frameRect().x(), -frameRect().y()); |
| 993 } | 993 } |
| 994 | 994 |
| 995 } // namespace blink | 995 } // namespace blink |
| OLD | NEW |