| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 #include "core/events/PopStateEvent.h" | 51 #include "core/events/PopStateEvent.h" |
| 52 #include "core/events/ScopedEventQueue.h" | 52 #include "core/events/ScopedEventQueue.h" |
| 53 #include "core/frame/BarProp.h" | 53 #include "core/frame/BarProp.h" |
| 54 #include "core/frame/DOMVisualViewport.h" | 54 #include "core/frame/DOMVisualViewport.h" |
| 55 #include "core/frame/EventHandlerRegistry.h" | 55 #include "core/frame/EventHandlerRegistry.h" |
| 56 #include "core/frame/External.h" | 56 #include "core/frame/External.h" |
| 57 #include "core/frame/FrameConsole.h" | 57 #include "core/frame/FrameConsole.h" |
| 58 #include "core/frame/FrameView.h" | 58 #include "core/frame/FrameView.h" |
| 59 #include "core/frame/History.h" | 59 #include "core/frame/History.h" |
| 60 #include "core/frame/LocalFrame.h" | 60 #include "core/frame/LocalFrame.h" |
| 61 #include "core/frame/LocalFrameClient.h" |
| 61 #include "core/frame/Navigator.h" | 62 #include "core/frame/Navigator.h" |
| 62 #include "core/frame/Screen.h" | 63 #include "core/frame/Screen.h" |
| 63 #include "core/frame/ScrollToOptions.h" | 64 #include "core/frame/ScrollToOptions.h" |
| 64 #include "core/frame/Settings.h" | 65 #include "core/frame/Settings.h" |
| 65 #include "core/frame/SuspendableTimer.h" | 66 #include "core/frame/SuspendableTimer.h" |
| 66 #include "core/frame/VisualViewport.h" | 67 #include "core/frame/VisualViewport.h" |
| 67 #include "core/html/HTMLFrameOwnerElement.h" | 68 #include "core/html/HTMLFrameOwnerElement.h" |
| 68 #include "core/input/EventHandler.h" | 69 #include "core/input/EventHandler.h" |
| 69 #include "core/inspector/ConsoleMessage.h" | 70 #include "core/inspector/ConsoleMessage.h" |
| 70 #include "core/inspector/InspectorInstrumentation.h" | 71 #include "core/inspector/InspectorInstrumentation.h" |
| 71 #include "core/inspector/InspectorTraceEvents.h" | 72 #include "core/inspector/InspectorTraceEvents.h" |
| 72 #include "core/loader/DocumentLoader.h" | 73 #include "core/loader/DocumentLoader.h" |
| 73 #include "core/loader/FrameLoaderClient.h" | |
| 74 #include "core/loader/appcache/ApplicationCache.h" | 74 #include "core/loader/appcache/ApplicationCache.h" |
| 75 #include "core/page/ChromeClient.h" | 75 #include "core/page/ChromeClient.h" |
| 76 #include "core/page/CreateWindow.h" | 76 #include "core/page/CreateWindow.h" |
| 77 #include "core/page/Page.h" | 77 #include "core/page/Page.h" |
| 78 #include "core/page/WindowFeatures.h" | 78 #include "core/page/WindowFeatures.h" |
| 79 #include "core/page/scrolling/ScrollingCoordinator.h" | 79 #include "core/page/scrolling/ScrollingCoordinator.h" |
| 80 #include "core/timing/DOMWindowPerformance.h" | 80 #include "core/timing/DOMWindowPerformance.h" |
| 81 #include "core/timing/Performance.h" | 81 #include "core/timing/Performance.h" |
| 82 #include "platform/EventDispatchForbiddenScope.h" | 82 #include "platform/EventDispatchForbiddenScope.h" |
| 83 #include "platform/WebFrameScheduler.h" | 83 #include "platform/WebFrameScheduler.h" |
| (...skipping 1547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1631 DOMWindow::trace(visitor); | 1631 DOMWindow::trace(visitor); |
| 1632 Supplementable<LocalDOMWindow>::trace(visitor); | 1632 Supplementable<LocalDOMWindow>::trace(visitor); |
| 1633 } | 1633 } |
| 1634 | 1634 |
| 1635 DEFINE_TRACE_WRAPPERS(LocalDOMWindow) { | 1635 DEFINE_TRACE_WRAPPERS(LocalDOMWindow) { |
| 1636 visitor->traceWrappers(m_customElements); | 1636 visitor->traceWrappers(m_customElements); |
| 1637 DOMWindow::traceWrappers(visitor); | 1637 DOMWindow::traceWrappers(visitor); |
| 1638 } | 1638 } |
| 1639 | 1639 |
| 1640 } // namespace blink | 1640 } // namespace blink |
| OLD | NEW |