| 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 "core/css/resolver/StyleResolver.h" | 43 #include "core/css/resolver/StyleResolver.h" |
| 44 #include "core/dom/Document.h" | 44 #include "core/dom/Document.h" |
| 45 #include "core/dom/Element.h" | 45 #include "core/dom/Element.h" |
| 46 #include "core/dom/ExceptionCode.h" | 46 #include "core/dom/ExceptionCode.h" |
| 47 #include "core/dom/ExecutionContext.h" | 47 #include "core/dom/ExecutionContext.h" |
| 48 #include "core/dom/RequestAnimationFrameCallback.h" | 48 #include "core/dom/RequestAnimationFrameCallback.h" |
| 49 #include "core/editing/Editor.h" | 49 #include "core/editing/Editor.h" |
| 50 #include "core/events/DOMWindowEventQueue.h" | 50 #include "core/events/DOMWindowEventQueue.h" |
| 51 #include "core/events/EventListener.h" | 51 #include "core/events/EventListener.h" |
| 52 #include "core/events/HashChangeEvent.h" | 52 #include "core/events/HashChangeEvent.h" |
| 53 #include "core/events/MessageEvent.h" | |
| 54 #include "core/events/PageTransitionEvent.h" | 53 #include "core/events/PageTransitionEvent.h" |
| 55 #include "core/events/PopStateEvent.h" | 54 #include "core/events/PopStateEvent.h" |
| 56 #include "core/frame/Console.h" | 55 #include "core/frame/Console.h" |
| 57 #include "core/frame/DOMWindowLifecycleNotifier.h" | 56 #include "core/frame/DOMWindowLifecycleNotifier.h" |
| 58 #include "core/frame/EventHandlerRegistry.h" | 57 #include "core/frame/EventHandlerRegistry.h" |
| 59 #include "core/frame/FrameConsole.h" | 58 #include "core/frame/FrameConsole.h" |
| 60 #include "core/frame/FrameHost.h" | 59 #include "core/frame/FrameHost.h" |
| 61 #include "core/frame/FrameView.h" | 60 #include "core/frame/FrameView.h" |
| 62 #include "core/frame/History.h" | 61 #include "core/frame/History.h" |
| 63 #include "core/frame/LocalFrame.h" | 62 #include "core/frame/LocalFrame.h" |
| (...skipping 912 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 976 visitor->trace(m_location); | 975 visitor->trace(m_location); |
| 977 visitor->trace(m_media); | 976 visitor->trace(m_media); |
| 978 visitor->trace(m_css); | 977 visitor->trace(m_css); |
| 979 visitor->trace(m_eventQueue); | 978 visitor->trace(m_eventQueue); |
| 980 WillBeHeapSupplementable<LocalDOMWindow>::trace(visitor); | 979 WillBeHeapSupplementable<LocalDOMWindow>::trace(visitor); |
| 981 EventTargetWithInlineData::trace(visitor); | 980 EventTargetWithInlineData::trace(visitor); |
| 982 LifecycleContext<LocalDOMWindow>::trace(visitor); | 981 LifecycleContext<LocalDOMWindow>::trace(visitor); |
| 983 } | 982 } |
| 984 | 983 |
| 985 } // namespace blink | 984 } // namespace blink |
| OLD | NEW |