| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 #include "core/page/scrolling/ScrollingCoordinator.h" | 80 #include "core/page/scrolling/ScrollingCoordinator.h" |
| 81 #include "core/timing/DOMWindowPerformance.h" | 81 #include "core/timing/DOMWindowPerformance.h" |
| 82 #include "core/timing/Performance.h" | 82 #include "core/timing/Performance.h" |
| 83 #include "platform/EventDispatchForbiddenScope.h" | 83 #include "platform/EventDispatchForbiddenScope.h" |
| 84 #include "platform/WebFrameScheduler.h" | 84 #include "platform/WebFrameScheduler.h" |
| 85 #include "platform/loader/fetch/ResourceFetcher.h" | 85 #include "platform/loader/fetch/ResourceFetcher.h" |
| 86 #include "platform/weborigin/SecurityOrigin.h" | 86 #include "platform/weborigin/SecurityOrigin.h" |
| 87 #include "platform/weborigin/Suborigin.h" | 87 #include "platform/weborigin/Suborigin.h" |
| 88 #include "public/platform/Platform.h" | 88 #include "public/platform/Platform.h" |
| 89 #include "public/platform/WebScreenInfo.h" | 89 #include "public/platform/WebScreenInfo.h" |
| 90 #include "public/platform/site_engagement.mojom-blink.h" |
| 90 | 91 |
| 91 #include <memory> | 92 #include <memory> |
| 92 | 93 |
| 93 namespace blink { | 94 namespace blink { |
| 94 | 95 |
| 95 // Timeout for link preloads to be used after window.onload | 96 // Timeout for link preloads to be used after window.onload |
| 96 static const int unusedPreloadTimeoutInSeconds = 3; | 97 static const int unusedPreloadTimeoutInSeconds = 3; |
| 97 | 98 |
| 98 class PostMessageTimer final | 99 class PostMessageTimer final |
| 99 : public GarbageCollectedFinalized<PostMessageTimer>, | 100 : public GarbageCollectedFinalized<PostMessageTimer>, |
| (...skipping 1532 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1632 DOMWindow::trace(visitor); | 1633 DOMWindow::trace(visitor); |
| 1633 Supplementable<LocalDOMWindow>::trace(visitor); | 1634 Supplementable<LocalDOMWindow>::trace(visitor); |
| 1634 } | 1635 } |
| 1635 | 1636 |
| 1636 DEFINE_TRACE_WRAPPERS(LocalDOMWindow) { | 1637 DEFINE_TRACE_WRAPPERS(LocalDOMWindow) { |
| 1637 visitor->traceWrappers(m_customElements); | 1638 visitor->traceWrappers(m_customElements); |
| 1638 DOMWindow::traceWrappers(visitor); | 1639 DOMWindow::traceWrappers(visitor); |
| 1639 } | 1640 } |
| 1640 | 1641 |
| 1641 } // namespace blink | 1642 } // namespace blink |
| OLD | NEW |