| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 #include "DOMStringList.h" | 43 #include "DOMStringList.h" |
| 44 #include "DOMTimer.h" | 44 #include "DOMTimer.h" |
| 45 #include "DOMTokenList.h" | 45 #include "DOMTokenList.h" |
| 46 #include "DOMURL.h" | 46 #include "DOMURL.h" |
| 47 #include "DOMWindowCSS.h" | 47 #include "DOMWindowCSS.h" |
| 48 #include "DOMWindowNotifications.h" | 48 #include "DOMWindowNotifications.h" |
| 49 #include "DeviceMotionController.h" | 49 #include "DeviceMotionController.h" |
| 50 #include "DeviceOrientationController.h" | 50 #include "DeviceOrientationController.h" |
| 51 #include "Document.h" | 51 #include "Document.h" |
| 52 #include "DocumentLoader.h" | 52 #include "DocumentLoader.h" |
| 53 #include "Editor.h" |
| 53 #include "Element.h" | 54 #include "Element.h" |
| 54 #include "EventException.h" | 55 #include "EventException.h" |
| 56 #include "EventHandler.h" |
| 55 #include "EventListener.h" | 57 #include "EventListener.h" |
| 56 #include "EventNames.h" | 58 #include "EventNames.h" |
| 57 #include "ExceptionCode.h" | 59 #include "ExceptionCode.h" |
| 58 #include "ExceptionCodePlaceholder.h" | 60 #include "ExceptionCodePlaceholder.h" |
| 59 #include "FloatRect.h" | 61 #include "FloatRect.h" |
| 60 #include "FocusController.h" | 62 #include "FocusController.h" |
| 61 #include "Frame.h" | 63 #include "Frame.h" |
| 62 #include "FrameLoadRequest.h" | 64 #include "FrameLoadRequest.h" |
| 63 #include "FrameLoader.h" | 65 #include "FrameLoader.h" |
| 64 #include "FrameLoaderClient.h" | 66 #include "FrameLoaderClient.h" |
| (...skipping 1875 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1940 WindowFeatures windowFeatures(dialogFeaturesString, screenAvailableRect(m_fr
ame->view())); | 1942 WindowFeatures windowFeatures(dialogFeaturesString, screenAvailableRect(m_fr
ame->view())); |
| 1941 Frame* dialogFrame = createWindow(urlString, emptyAtom, windowFeatures, | 1943 Frame* dialogFrame = createWindow(urlString, emptyAtom, windowFeatures, |
| 1942 activeWindow, firstFrame, m_frame, function, functionContext); | 1944 activeWindow, firstFrame, m_frame, function, functionContext); |
| 1943 if (!dialogFrame) | 1945 if (!dialogFrame) |
| 1944 return; | 1946 return; |
| 1945 UserGestureIndicatorDisabler disabler; | 1947 UserGestureIndicatorDisabler disabler; |
| 1946 dialogFrame->page()->chrome()->runModal(); | 1948 dialogFrame->page()->chrome()->runModal(); |
| 1947 } | 1949 } |
| 1948 | 1950 |
| 1949 } // namespace WebCore | 1951 } // namespace WebCore |
| OLD | NEW |