| 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 20 matching lines...) Expand all Loading... |
| 31 #include "bindings/v8/ScheduledAction.h" | 31 #include "bindings/v8/ScheduledAction.h" |
| 32 #include "bindings/v8/ScriptCallStackFactory.h" | 32 #include "bindings/v8/ScriptCallStackFactory.h" |
| 33 #include "bindings/v8/ScriptController.h" | 33 #include "bindings/v8/ScriptController.h" |
| 34 #include "bindings/v8/SerializedScriptValue.h" | 34 #include "bindings/v8/SerializedScriptValue.h" |
| 35 #include "core/css/CSSComputedStyleDeclaration.h" | 35 #include "core/css/CSSComputedStyleDeclaration.h" |
| 36 #include "core/css/CSSRuleList.h" | 36 #include "core/css/CSSRuleList.h" |
| 37 #include "core/css/DOMWindowCSS.h" | 37 #include "core/css/DOMWindowCSS.h" |
| 38 #include "core/css/MediaQueryList.h" | 38 #include "core/css/MediaQueryList.h" |
| 39 #include "core/css/MediaQueryMatcher.h" | 39 #include "core/css/MediaQueryMatcher.h" |
| 40 #include "core/css/StyleMedia.h" | 40 #include "core/css/StyleMedia.h" |
| 41 #include "core/css/StyleResolver.h" | 41 #include "core/css/resolver/StyleResolver.h" |
| 42 #include "core/dom/BeforeUnloadEvent.h" | 42 #include "core/dom/BeforeUnloadEvent.h" |
| 43 #include "core/dom/DOMStringList.h" | 43 #include "core/dom/DOMStringList.h" |
| 44 #include "core/dom/DeviceOrientationController.h" | 44 #include "core/dom/DeviceOrientationController.h" |
| 45 #include "core/dom/Document.h" | 45 #include "core/dom/Document.h" |
| 46 #include "core/dom/Element.h" | 46 #include "core/dom/Element.h" |
| 47 #include "core/dom/EventException.h" | 47 #include "core/dom/EventException.h" |
| 48 #include "core/dom/EventListener.h" | 48 #include "core/dom/EventListener.h" |
| 49 #include "core/dom/EventNames.h" | 49 #include "core/dom/EventNames.h" |
| 50 #include "core/dom/ExceptionCode.h" | 50 #include "core/dom/ExceptionCode.h" |
| 51 #include "core/dom/ExceptionCodePlaceholder.h" | 51 #include "core/dom/ExceptionCodePlaceholder.h" |
| (...skipping 1810 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1862 WindowFeatures windowFeatures(dialogFeaturesString, screenAvailableRect(m_fr
ame->view())); | 1862 WindowFeatures windowFeatures(dialogFeaturesString, screenAvailableRect(m_fr
ame->view())); |
| 1863 Frame* dialogFrame = createWindow(urlString, emptyAtom, windowFeatures, | 1863 Frame* dialogFrame = createWindow(urlString, emptyAtom, windowFeatures, |
| 1864 activeWindow, firstFrame, m_frame, function, functionContext); | 1864 activeWindow, firstFrame, m_frame, function, functionContext); |
| 1865 if (!dialogFrame) | 1865 if (!dialogFrame) |
| 1866 return; | 1866 return; |
| 1867 UserGestureIndicatorDisabler disabler; | 1867 UserGestureIndicatorDisabler disabler; |
| 1868 dialogFrame->page()->chrome()->runModal(); | 1868 dialogFrame->page()->chrome()->runModal(); |
| 1869 } | 1869 } |
| 1870 | 1870 |
| 1871 } // namespace WebCore | 1871 } // namespace WebCore |
| OLD | NEW |