OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef WorkletGlobalScope_h | |
6 #define WorkletGlobalScope_h | |
7 | |
8 #include "bindings/core/v8/ScriptWrappable.h" | |
9 #include "core/dom/ExecutionContext.h" | |
10 #include "core/dom/ExecutionContextTask.h" | |
11 #include "core/dom/SecurityContext.h" | |
12 #include "core/inspector/ConsoleMessage.h" | |
13 #include "core/inspector/ScriptCallStack.h" | |
14 #include "platform/heap/Handle.h" | |
15 | |
16 namespace blink { | |
17 | |
18 class EventQueue; | |
19 class IsolatedScriptController; | |
20 | |
21 class WorkletGlobalScope : public RefCountedWillBeNoBase<WorkletGlobalScope>, pu blic SecurityContext, public ExecutionContext, public ScriptWrappable { | |
22 DEFINE_WRAPPERTYPEINFO(); | |
23 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(WorkletGlobalScope); | |
24 public: | |
25 #if !ENABLE(OILPAN) | |
26 using RefCounted<WorkletGlobalScope>::ref; | |
27 using RefCounted<WorkletGlobalScope>::deref; | |
28 #endif | |
29 | |
30 // The url and userAgent arguments are inherited from the parent | |
31 // ExecutionContext for Worklets. | |
32 static PassRefPtrWillBeRawPtr<WorkletGlobalScope> create(const KURL&, const String& userAgent, v8::Isolate*); | |
33 ~WorkletGlobalScope() override; | |
34 | |
35 bool isWorkletGlobalScope() const final { return true; } | |
36 | |
37 IsolatedScriptController* script(); | |
38 v8::Isolate* isolate() const { return m_isolate; } | |
kinuko
2016/01/05 04:58:32
Let's remove methods that are not used yet.
ikilpatrick
2016/01/07 22:47:34
Done.
| |
39 | |
40 // ScriptWrappable | |
41 v8::Local<v8::Object> wrap(v8::Isolate*, v8::Local<v8::Object> creationConte xt) final; | |
42 v8::Local<v8::Object> associateWithWrapper(v8::Isolate*, const WrapperTypeIn fo*, v8::Local<v8::Object> wrapper) final; | |
43 | |
44 // ExecutionContext | |
45 void disableEval(const String& errorMessage) final; | |
46 String userAgent() const final { return m_userAgent; } | |
47 SecurityContext& securityContext() final { return *this; } | |
48 EventQueue* eventQueue() const final { ASSERT_NOT_REACHED(); return nullptr; } // WorkletGlobalScopes don't have an event queue. | |
49 bool isSecureContext(String& errorMessage, const SecureContextCheck = Standa rdSecureContextCheck) const final; | |
50 | |
51 using SecurityContext::securityOrigin; | |
52 using SecurityContext::contentSecurityPolicy; | |
53 | |
54 DOMTimerCoordinator* timers() final { ASSERT_NOT_REACHED(); return nullptr; } // WorkletGlobalScopes don't have timers. | |
55 void postTask(const WebTraceLocation&, PassOwnPtr<ExecutionContextTask>) ove rride { } | |
kinuko
2016/01/05 04:58:32
ASSERT_NOT_REACHED for now (and TODO to implement)
ikilpatrick
2016/01/07 22:47:34
Done.
| |
56 | |
57 // TODO(ikilpatrick): implement when we implement devtools support. | |
58 void reportBlockedScriptExecutionToInspector(const String& directiveText) fi nal { } | |
59 void addConsoleMessage(PassRefPtrWillBeRawPtr<ConsoleMessage>) final { } | |
60 void logExceptionToConsole(const String& errorMessage, int scriptId, const S tring& sourceURL, int lineNumber, int columnNumber, PassRefPtrWillBeRawPtr<Scrip tCallStack>) final { } | |
61 | |
62 DECLARE_VIRTUAL_TRACE(); | |
63 | |
64 private: | |
65 #if !ENABLE(OILPAN) | |
66 void refExecutionContext() final { ref(); } | |
67 void derefExecutionContext() final { deref(); } | |
68 #endif | |
69 | |
70 WorkletGlobalScope(const KURL&, const String& userAgent, v8::Isolate*); | |
71 | |
72 const KURL& virtualURL() const final { return m_url; } | |
73 KURL virtualCompleteURL(const String&) const final; | |
74 | |
75 EventTarget* errorEventTarget() final { return nullptr; } | |
76 void didUpdateSecurityOrigin() final { } | |
kinuko
2016/01/05 04:58:32
ditto, do we need ASSERT_NOT_REACHED for these?
ikilpatrick
2016/01/07 22:47:34
errorEventTarget is ok as a nullptr (callsites exp
| |
77 | |
78 KURL m_url; | |
79 String m_userAgent; | |
80 v8::Isolate* m_isolate; | |
kinuko
2016/01/05 04:58:32
We probably don't need to store isolate at least i
ikilpatrick
2016/01/07 22:47:34
Done.
| |
81 OwnPtrWillBeMember<IsolatedScriptController> m_script; | |
82 }; | |
83 | |
84 DEFINE_TYPE_CASTS(WorkletGlobalScope, ExecutionContext, context, context->isWork letGlobalScope(), context.isWorkletGlobalScope()); | |
85 | |
86 } // namespace blink | |
87 | |
88 #endif // WorkletGlobalScope_h | |
OLD | NEW |