| 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 78 | 78 |
| 79 virtual void reportBlockedScriptExecutionToInspector(const String& directive
Text) = 0; | 79 virtual void reportBlockedScriptExecutionToInspector(const String& directive
Text) = 0; |
| 80 | 80 |
| 81 virtual SecurityContext& securityContext() = 0; | 81 virtual SecurityContext& securityContext() = 0; |
| 82 KURL contextURL() const { return virtualURL(); } | 82 KURL contextURL() const { return virtualURL(); } |
| 83 KURL contextCompleteURL(const String& url) const { return virtualCompleteURL
(url); } | 83 KURL contextCompleteURL(const String& url) const { return virtualCompleteURL
(url); } |
| 84 | 84 |
| 85 bool shouldSanitizeScriptError(const String& sourceURL, AccessControlStatus)
; | 85 bool shouldSanitizeScriptError(const String& sourceURL, AccessControlStatus)
; |
| 86 void reportException(PassRefPtrWillBeRawPtr<ErrorEvent>, PassRefPtrWillBeRaw
Ptr<ScriptCallStack>, AccessControlStatus); | 86 void reportException(PassRefPtrWillBeRawPtr<ErrorEvent>, PassRefPtrWillBeRaw
Ptr<ScriptCallStack>, AccessControlStatus); |
| 87 | 87 |
| 88 void addConsoleMessage(PassRefPtr<ConsoleMessage>); | 88 void addConsoleMessage(PassRefPtrWillBeRawPtr<ConsoleMessage>); |
| 89 | 89 |
| 90 PublicURLManager& publicURLManager(); | 90 PublicURLManager& publicURLManager(); |
| 91 | 91 |
| 92 // Active objects are not garbage collected even if inaccessible, e.g. becau
se their activity may result in callbacks being invoked. | 92 // Active objects are not garbage collected even if inaccessible, e.g. becau
se their activity may result in callbacks being invoked. |
| 93 bool hasPendingActivity(); | 93 bool hasPendingActivity(); |
| 94 | 94 |
| 95 void suspendActiveDOMObjects(); | 95 void suspendActiveDOMObjects(); |
| 96 void resumeActiveDOMObjects(); | 96 void resumeActiveDOMObjects(); |
| 97 void stopActiveDOMObjects(); | 97 void stopActiveDOMObjects(); |
| 98 unsigned activeDOMObjectCount(); | 98 unsigned activeDOMObjectCount(); |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 | 169 |
| 170 // The location of this member is important; to make sure contextDestroyed()
notification on | 170 // The location of this member is important; to make sure contextDestroyed()
notification on |
| 171 // ExecutionContext's members (notably m_timeouts) is called before they are
destructed, | 171 // ExecutionContext's members (notably m_timeouts) is called before they are
destructed, |
| 172 // m_lifecycleNotifer should be placed *after* such members. | 172 // m_lifecycleNotifer should be placed *after* such members. |
| 173 OwnPtr<ContextLifecycleNotifier> m_lifecycleNotifier; | 173 OwnPtr<ContextLifecycleNotifier> m_lifecycleNotifier; |
| 174 }; | 174 }; |
| 175 | 175 |
| 176 } // namespace blink | 176 } // namespace blink |
| 177 | 177 |
| 178 #endif // ExecutionContext_h | 178 #endif // ExecutionContext_h |
| OLD | NEW |