| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 class ActiveDOMObject; | 48 class ActiveDOMObject; |
| 49 class ConsoleMessage; | 49 class ConsoleMessage; |
| 50 class DOMTimerCoordinator; | 50 class DOMTimerCoordinator; |
| 51 class ErrorEvent; | 51 class ErrorEvent; |
| 52 class EventQueue; | 52 class EventQueue; |
| 53 class EventTarget; | 53 class EventTarget; |
| 54 class ExecutionContextTask; | 54 class ExecutionContextTask; |
| 55 class LocalDOMWindow; | 55 class LocalDOMWindow; |
| 56 class PublicURLManager; | 56 class PublicURLManager; |
| 57 class SecurityOrigin; | 57 class SecurityOrigin; |
| 58 class SourceLocation; | |
| 59 | 58 |
| 60 class CORE_EXPORT ExecutionContext : public ContextLifecycleNotifier, | 59 class CORE_EXPORT ExecutionContext : public ContextLifecycleNotifier, |
| 61 public Supplementable<ExecutionContext> { | 60 public Supplementable<ExecutionContext> { |
| 62 WTF_MAKE_NONCOPYABLE(ExecutionContext); | 61 WTF_MAKE_NONCOPYABLE(ExecutionContext); |
| 63 | 62 |
| 64 public: | 63 public: |
| 65 DECLARE_VIRTUAL_TRACE(); | 64 DECLARE_VIRTUAL_TRACE(); |
| 66 | 65 |
| 67 // Used to specify whether |isSecureContext| should walk the | 66 // Used to specify whether |isSecureContext| should walk the |
| 68 // ancestor tree to decide whether to restrict usage of a powerful | 67 // ancestor tree to decide whether to restrict usage of a powerful |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 | 208 |
| 210 Deque<std::unique_ptr<SuspendableTask>> m_suspendedTasks; | 209 Deque<std::unique_ptr<SuspendableTask>> m_suspendedTasks; |
| 211 bool m_isRunSuspendableTasksScheduled; | 210 bool m_isRunSuspendableTasksScheduled; |
| 212 | 211 |
| 213 ReferrerPolicy m_referrerPolicy; | 212 ReferrerPolicy m_referrerPolicy; |
| 214 }; | 213 }; |
| 215 | 214 |
| 216 } // namespace blink | 215 } // namespace blink |
| 217 | 216 |
| 218 #endif // ExecutionContext_h | 217 #endif // ExecutionContext_h |
| OLD | NEW |