OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007, 2008, 2010 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2007, 2008, 2010 Apple Inc. All rights reserved. |
3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) | 3 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies) |
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 | 6 * modification, are permitted provided that the following conditions |
7 * are met: | 7 * are met: |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 1661 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1672 } | 1672 } |
1673 | 1673 |
1674 void DOMWindow::removeAllEventListeners() | 1674 void DOMWindow::removeAllEventListeners() |
1675 { | 1675 { |
1676 EventTarget::removeAllEventListeners(); | 1676 EventTarget::removeAllEventListeners(); |
1677 | 1677 |
1678 if (DeviceMotionController* controller = DeviceMotionController::from(page()
)) | 1678 if (DeviceMotionController* controller = DeviceMotionController::from(page()
)) |
1679 controller->removeAllDeviceEventListeners(this); | 1679 controller->removeAllDeviceEventListeners(this); |
1680 if (DeviceOrientationController* controller = DeviceOrientationController::f
rom(page())) | 1680 if (DeviceOrientationController* controller = DeviceOrientationController::f
rom(page())) |
1681 controller->removeAllDeviceEventListeners(this); | 1681 controller->removeAllDeviceEventListeners(this); |
1682 #if ENABLE(TOUCH_EVENTS) | |
1683 if (Document* document = this->document()) | 1682 if (Document* document = this->document()) |
1684 document->didRemoveEventTargetNode(document); | 1683 document->didRemoveEventTargetNode(document); |
1685 #endif | |
1686 | 1684 |
1687 removeAllUnloadEventListeners(this); | 1685 removeAllUnloadEventListeners(this); |
1688 removeAllBeforeUnloadEventListeners(this); | 1686 removeAllBeforeUnloadEventListeners(this); |
1689 } | 1687 } |
1690 | 1688 |
1691 void DOMWindow::captureEvents() | 1689 void DOMWindow::captureEvents() |
1692 { | 1690 { |
1693 // Not implemented. | 1691 // Not implemented. |
1694 } | 1692 } |
1695 | 1693 |
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1942 WindowFeatures windowFeatures(dialogFeaturesString, screenAvailableRect(m_fr
ame->view())); | 1940 WindowFeatures windowFeatures(dialogFeaturesString, screenAvailableRect(m_fr
ame->view())); |
1943 Frame* dialogFrame = createWindow(urlString, emptyAtom, windowFeatures, | 1941 Frame* dialogFrame = createWindow(urlString, emptyAtom, windowFeatures, |
1944 activeWindow, firstFrame, m_frame, function, functionContext); | 1942 activeWindow, firstFrame, m_frame, function, functionContext); |
1945 if (!dialogFrame) | 1943 if (!dialogFrame) |
1946 return; | 1944 return; |
1947 UserGestureIndicatorDisabler disabler; | 1945 UserGestureIndicatorDisabler disabler; |
1948 dialogFrame->page()->chrome()->runModal(); | 1946 dialogFrame->page()->chrome()->runModal(); |
1949 } | 1947 } |
1950 | 1948 |
1951 } // namespace WebCore | 1949 } // namespace WebCore |
OLD | NEW |