| 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 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 | 82 |
| 83 virtual bool isContextThread() const { return true; } | 83 virtual bool isContextThread() const { return true; } |
| 84 | 84 |
| 85 SecurityOrigin* getSecurityOrigin(); | 85 SecurityOrigin* getSecurityOrigin(); |
| 86 ContentSecurityPolicy* contentSecurityPolicy(); | 86 ContentSecurityPolicy* contentSecurityPolicy(); |
| 87 const KURL& url() const; | 87 const KURL& url() const; |
| 88 KURL completeURL(const String& url) const; | 88 KURL completeURL(const String& url) const; |
| 89 virtual void disableEval(const String& errorMessage) = 0; | 89 virtual void disableEval(const String& errorMessage) = 0; |
| 90 virtual LocalDOMWindow* executingWindow() { return 0; } | 90 virtual LocalDOMWindow* executingWindow() { return 0; } |
| 91 virtual String userAgent() const = 0; | 91 virtual String userAgent() const = 0; |
| 92 virtual void postTask(const WebTraceLocation&, std::unique_ptr<ExecutionCont
extTask>) = 0; // Executes the task on context's thread asynchronously. | 92 virtual void postTask(const WebTraceLocation&, std::unique_ptr<ExecutionCont
extTask>, const String& taskNameForInstrumentation = emptyString()) = 0; // Exec
utes the task on context's thread asynchronously. |
| 93 | 93 |
| 94 // Gets the DOMTimerCoordinator which maintains the "active timer | 94 // Gets the DOMTimerCoordinator which maintains the "active timer |
| 95 // list" of tasks created by setTimeout and setInterval. The | 95 // list" of tasks created by setTimeout and setInterval. The |
| 96 // DOMTimerCoordinator is owned by the ExecutionContext and should | 96 // DOMTimerCoordinator is owned by the ExecutionContext and should |
| 97 // not be used after the ExecutionContext is destroyed. | 97 // not be used after the ExecutionContext is destroyed. |
| 98 virtual DOMTimerCoordinator* timers() = 0; | 98 virtual DOMTimerCoordinator* timers() = 0; |
| 99 | 99 |
| 100 virtual void reportBlockedScriptExecutionToInspector(const String& directive
Text) = 0; | 100 virtual void reportBlockedScriptExecutionToInspector(const String& directive
Text) = 0; |
| 101 | 101 |
| 102 virtual SecurityContext& securityContext() = 0; | 102 virtual SecurityContext& securityContext() = 0; |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 | 182 |
| 183 Deque<std::unique_ptr<SuspendableTask>> m_suspendedTasks; | 183 Deque<std::unique_ptr<SuspendableTask>> m_suspendedTasks; |
| 184 bool m_isRunSuspendableTasksScheduled; | 184 bool m_isRunSuspendableTasksScheduled; |
| 185 | 185 |
| 186 ReferrerPolicy m_referrerPolicy; | 186 ReferrerPolicy m_referrerPolicy; |
| 187 }; | 187 }; |
| 188 | 188 |
| 189 } // namespace blink | 189 } // namespace blink |
| 190 | 190 |
| 191 #endif // ExecutionContext_h | 191 #endif // ExecutionContext_h |
| OLD | NEW |