| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef NullExecutionContext_h | 5 #ifndef NullExecutionContext_h |
| 6 #define NullExecutionContext_h | 6 #define NullExecutionContext_h |
| 7 | 7 |
| 8 #include "bindings/core/v8/ScriptCallStack.h" | 8 #include "bindings/core/v8/ScriptCallStack.h" |
| 9 #include "core/dom/ExecutionContext.h" | 9 #include "core/dom/ExecutionContext.h" |
| 10 #include "core/dom/SecurityContext.h" | 10 #include "core/dom/SecurityContext.h" |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 void setTasksNeedSuspension(bool flag) { m_tasksNeedSuspension = flag; } | 33 void setTasksNeedSuspension(bool flag) { m_tasksNeedSuspension = flag; } |
| 34 | 34 |
| 35 void reportBlockedScriptExecutionToInspector(const String& directiveText) ov
erride { } | 35 void reportBlockedScriptExecutionToInspector(const String& directiveText) ov
erride { } |
| 36 void didUpdateSecurityOrigin() override { } | 36 void didUpdateSecurityOrigin() override { } |
| 37 SecurityContext& securityContext() override { return *this; } | 37 SecurityContext& securityContext() override { return *this; } |
| 38 DOMTimerCoordinator* timers() override { return nullptr; } | 38 DOMTimerCoordinator* timers() override { return nullptr; } |
| 39 | 39 |
| 40 void addConsoleMessage(PassRefPtrWillBeRawPtr<ConsoleMessage>) override { } | 40 void addConsoleMessage(PassRefPtrWillBeRawPtr<ConsoleMessage>) override { } |
| 41 void logExceptionToConsole(const String& errorMessage, int scriptId, const S
tring& sourceURL, int lineNumber, int columnNumber, PassRefPtr<ScriptCallStack>)
override { } | 41 void logExceptionToConsole(const String& errorMessage, int scriptId, const S
tring& sourceURL, int lineNumber, int columnNumber, PassRefPtr<ScriptCallStack>)
override { } |
| 42 | 42 |
| 43 void setIsSecureContext(bool); |
| 43 bool isSecureContext(String& errorMessage, const SecureContextCheck = Standa
rdSecureContextCheck) const override; | 44 bool isSecureContext(String& errorMessage, const SecureContextCheck = Standa
rdSecureContextCheck) const override; |
| 44 | 45 |
| 45 DEFINE_INLINE_TRACE() | 46 DEFINE_INLINE_TRACE() |
| 46 { | 47 { |
| 47 visitor->trace(m_queue); | 48 visitor->trace(m_queue); |
| 48 SecurityContext::trace(visitor); | 49 SecurityContext::trace(visitor); |
| 49 ExecutionContext::trace(visitor); | 50 ExecutionContext::trace(visitor); |
| 50 } | 51 } |
| 51 | 52 |
| 52 #if !ENABLE(OILPAN) | 53 #if !ENABLE(OILPAN) |
| 53 using RefCounted<NullExecutionContext>::ref; | 54 using RefCounted<NullExecutionContext>::ref; |
| 54 using RefCounted<NullExecutionContext>::deref; | 55 using RefCounted<NullExecutionContext>::deref; |
| 55 | 56 |
| 56 void refExecutionContext() override { ref(); } | 57 void refExecutionContext() override { ref(); } |
| 57 void derefExecutionContext() override { deref(); } | 58 void derefExecutionContext() override { deref(); } |
| 58 #endif | 59 #endif |
| 59 | 60 |
| 60 protected: | 61 protected: |
| 61 const KURL& virtualURL() const override { return m_dummyURL; } | 62 const KURL& virtualURL() const override { return m_dummyURL; } |
| 62 KURL virtualCompleteURL(const String&) const override { return m_dummyURL; } | 63 KURL virtualCompleteURL(const String&) const override { return m_dummyURL; } |
| 63 | 64 |
| 64 private: | 65 private: |
| 65 bool m_tasksNeedSuspension; | 66 bool m_tasksNeedSuspension; |
| 67 bool m_isSecureContext; |
| 66 OwnPtrWillBeMember<EventQueue> m_queue; | 68 OwnPtrWillBeMember<EventQueue> m_queue; |
| 67 | 69 |
| 68 KURL m_dummyURL; | 70 KURL m_dummyURL; |
| 69 }; | 71 }; |
| 70 | 72 |
| 71 } // namespace blink | 73 } // namespace blink |
| 72 | 74 |
| 73 #endif // NullExecutionContext_h | 75 #endif // NullExecutionContext_h |
| OLD | NEW |