| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 WorkletGlobalScope_h | 5 #ifndef WorkletGlobalScope_h |
| 6 #define WorkletGlobalScope_h | 6 #define WorkletGlobalScope_h |
| 7 | 7 |
| 8 #include "bindings/core/v8/ScriptCallStack.h" | 8 #include "bindings/core/v8/ScriptCallStack.h" |
| 9 #include "bindings/core/v8/ScriptWrappable.h" | 9 #include "bindings/core/v8/ScriptWrappable.h" |
| 10 #include "core/dom/ExecutionContext.h" | 10 #include "core/dom/ExecutionContext.h" |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 // The url, userAgent and securityOrigin arguments are inherited from the | 31 // The url, userAgent and securityOrigin arguments are inherited from the |
| 32 // parent ExecutionContext for Worklets. | 32 // parent ExecutionContext for Worklets. |
| 33 static PassRefPtrWillBeRawPtr<WorkletGlobalScope> create(const KURL&, const
String& userAgent, PassRefPtr<SecurityOrigin>, v8::Isolate*); | 33 static PassRefPtrWillBeRawPtr<WorkletGlobalScope> create(const KURL&, const
String& userAgent, PassRefPtr<SecurityOrigin>, v8::Isolate*); |
| 34 ~WorkletGlobalScope() override; | 34 ~WorkletGlobalScope() override; |
| 35 | 35 |
| 36 bool isWorkletGlobalScope() const final { return true; } | 36 bool isWorkletGlobalScope() const final { return true; } |
| 37 | 37 |
| 38 | 38 |
| 39 // WorkerOrWorkletGlobalScope | 39 // WorkerOrWorkletGlobalScope |
| 40 ScriptWrappable* scriptWrappable() const final { return const_cast<WorkletGl
obalScope*>(this); } | 40 ScriptWrappable* scriptWrappable() const final { return const_cast<WorkletGl
obalScope*>(this); } |
| 41 WorkerOrWorkletScriptController* script() final { return m_script.get(); } | 41 WorkerOrWorkletScriptController* scriptController() final { return m_scriptC
ontroller.get(); } |
| 42 | 42 |
| 43 // ScriptWrappable | 43 // ScriptWrappable |
| 44 v8::Local<v8::Object> wrap(v8::Isolate*, v8::Local<v8::Object> creationConte
xt) final; | 44 v8::Local<v8::Object> wrap(v8::Isolate*, v8::Local<v8::Object> creationConte
xt) final; |
| 45 v8::Local<v8::Object> associateWithWrapper(v8::Isolate*, const WrapperTypeIn
fo*, v8::Local<v8::Object> wrapper) final; | 45 v8::Local<v8::Object> associateWithWrapper(v8::Isolate*, const WrapperTypeIn
fo*, v8::Local<v8::Object> wrapper) final; |
| 46 | 46 |
| 47 // ExecutionContext | 47 // ExecutionContext |
| 48 void disableEval(const String& errorMessage) final; | 48 void disableEval(const String& errorMessage) final; |
| 49 String userAgent() const final { return m_userAgent; } | 49 String userAgent() const final { return m_userAgent; } |
| 50 SecurityContext& securityContext() final { return *this; } | 50 SecurityContext& securityContext() final { return *this; } |
| 51 EventQueue* eventQueue() const final { ASSERT_NOT_REACHED(); return nullptr;
} // WorkletGlobalScopes don't have an event queue. | 51 EventQueue* eventQueue() const final { ASSERT_NOT_REACHED(); return nullptr;
} // WorkletGlobalScopes don't have an event queue. |
| (...skipping 25 matching lines...) Expand all Loading... |
| 77 WorkletGlobalScope(const KURL&, const String& userAgent, PassRefPtr<Security
Origin>, v8::Isolate*); | 77 WorkletGlobalScope(const KURL&, const String& userAgent, PassRefPtr<Security
Origin>, v8::Isolate*); |
| 78 | 78 |
| 79 const KURL& virtualURL() const final { return m_url; } | 79 const KURL& virtualURL() const final { return m_url; } |
| 80 KURL virtualCompleteURL(const String&) const final; | 80 KURL virtualCompleteURL(const String&) const final; |
| 81 | 81 |
| 82 EventTarget* errorEventTarget() final { return nullptr; } | 82 EventTarget* errorEventTarget() final { return nullptr; } |
| 83 void didUpdateSecurityOrigin() final { } | 83 void didUpdateSecurityOrigin() final { } |
| 84 | 84 |
| 85 KURL m_url; | 85 KURL m_url; |
| 86 String m_userAgent; | 86 String m_userAgent; |
| 87 OwnPtrWillBeMember<WorkerOrWorkletScriptController> m_script; | 87 OwnPtrWillBeMember<WorkerOrWorkletScriptController> m_scriptController; |
| 88 }; | 88 }; |
| 89 | 89 |
| 90 DEFINE_TYPE_CASTS(WorkletGlobalScope, ExecutionContext, context, context->isWork
letGlobalScope(), context.isWorkletGlobalScope()); | 90 DEFINE_TYPE_CASTS(WorkletGlobalScope, ExecutionContext, context, context->isWork
letGlobalScope(), context.isWorkletGlobalScope()); |
| 91 | 91 |
| 92 } // namespace blink | 92 } // namespace blink |
| 93 | 93 |
| 94 #endif // WorkletGlobalScope_h | 94 #endif // WorkletGlobalScope_h |
| OLD | NEW |