| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. | 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. |
| 3 * Copyright (C) 2012 Google Inc. All Rights Reserved. | 3 * Copyright (C) 2012 Google Inc. All Rights Reserved. |
| 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 "core/CoreExport.h" | 31 #include "core/CoreExport.h" |
| 32 #include "core/dom/ContextLifecycleNotifier.h" | 32 #include "core/dom/ContextLifecycleNotifier.h" |
| 33 #include "core/dom/ContextLifecycleObserver.h" | 33 #include "core/dom/ContextLifecycleObserver.h" |
| 34 #include "core/dom/SecurityContext.h" | 34 #include "core/dom/SecurityContext.h" |
| 35 #include "core/dom/SuspendableTask.h" | 35 #include "core/dom/SuspendableTask.h" |
| 36 #include "core/fetch/AccessControlStatus.h" | 36 #include "core/fetch/AccessControlStatus.h" |
| 37 #include "platform/Supplementable.h" | 37 #include "platform/Supplementable.h" |
| 38 #include "platform/heap/Handle.h" | 38 #include "platform/heap/Handle.h" |
| 39 #include "platform/weborigin/KURL.h" | 39 #include "platform/weborigin/KURL.h" |
| 40 #include "platform/weborigin/ReferrerPolicy.h" | 40 #include "platform/weborigin/ReferrerPolicy.h" |
| 41 #include "public/platform/WebTraceLocation.h" | |
| 42 #include "wtf/Deque.h" | 41 #include "wtf/Deque.h" |
| 43 #include "wtf/Noncopyable.h" | 42 #include "wtf/Noncopyable.h" |
| 44 #include <memory> | 43 #include <memory> |
| 45 | 44 |
| 46 namespace blink { | 45 namespace blink { |
| 47 | 46 |
| 48 class ActiveDOMObject; | 47 class ActiveDOMObject; |
| 49 class ConsoleMessage; | 48 class ConsoleMessage; |
| 50 class DOMTimerCoordinator; | 49 class DOMTimerCoordinator; |
| 51 class ErrorEvent; | 50 class ErrorEvent; |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 | 185 |
| 187 Deque<std::unique_ptr<SuspendableTask>> m_suspendedTasks; | 186 Deque<std::unique_ptr<SuspendableTask>> m_suspendedTasks; |
| 188 bool m_isRunSuspendableTasksScheduled; | 187 bool m_isRunSuspendableTasksScheduled; |
| 189 | 188 |
| 190 ReferrerPolicy m_referrerPolicy; | 189 ReferrerPolicy m_referrerPolicy; |
| 191 }; | 190 }; |
| 192 | 191 |
| 193 } // namespace blink | 192 } // namespace blink |
| 194 | 193 |
| 195 #endif // ExecutionContext_h | 194 #endif // ExecutionContext_h |
| OLD | NEW |