| 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 515 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 526 // contained inside the requested rect. (Note that -1/2 is 0.) | 526 // contained inside the requested rect. (Note that -1/2 is 0.) |
| 527 LayoutSize padding((documentRect.width() - 1) / 2, | 527 LayoutSize padding((documentRect.width() - 1) / 2, |
| 528 (documentRect.height() - 1) / 2); | 528 (documentRect.height() - 1) / 2); |
| 529 HitTestResult result = frame->eventHandler().hitTestResultAtPoint( | 529 HitTestResult result = frame->eventHandler().hitTestResultAtPoint( |
| 530 center, HitTestRequest::ReadOnly | HitTestRequest::Active | | 530 center, HitTestRequest::ReadOnly | HitTestRequest::Active | |
| 531 HitTestRequest::ListBased, | 531 HitTestRequest::ListBased, |
| 532 padding); | 532 padding); |
| 533 const HitTestResult::NodeSet& nodes = result.listBasedTestResult(); | 533 const HitTestResult::NodeSet& nodes = result.listBasedTestResult(); |
| 534 if (nodes.size() != 1) | 534 if (nodes.size() != 1) |
| 535 return false; | 535 return false; |
| 536 return nodes.first().get() == m_element; | 536 return nodes.front().get() == m_element; |
| 537 } | 537 } |
| 538 | 538 |
| 539 void WebPluginContainerImpl::requestTouchEventType( | 539 void WebPluginContainerImpl::requestTouchEventType( |
| 540 TouchEventRequestType requestType) { | 540 TouchEventRequestType requestType) { |
| 541 if (m_touchEventRequestType == requestType || !m_element) | 541 if (m_touchEventRequestType == requestType || !m_element) |
| 542 return; | 542 return; |
| 543 | 543 |
| 544 if (FrameHost* frameHost = m_element->document().frameHost()) { | 544 if (FrameHost* frameHost = m_element->document().frameHost()) { |
| 545 EventHandlerRegistry& registry = frameHost->eventHandlerRegistry(); | 545 EventHandlerRegistry& registry = frameHost->eventHandlerRegistry(); |
| 546 if (requestType != TouchEventRequestTypeNone && | 546 if (requestType != TouchEventRequestTypeNone && |
| (...skipping 439 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 |