Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(152)

Side by Side Diff: third_party/WebKit/Source/modules/worklet/WorkletGlobalScope.h

Issue 1535943005: Initial implementation of bindings and basic classes for worklets. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: absolute paths for DEPS file. Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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
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 "core/workers/WorkerOrWorkletGlobalScope.h"
15 #include "platform/heap/Handle.h"
16
17 namespace blink {
18
19 class EventQueue;
20 class WorkerOrWorkletScriptController;
21
22 class WorkletGlobalScope : public RefCountedWillBeGarbageCollectedFinalized<Work letGlobalScope>, public SecurityContext, public WorkerOrWorkletGlobalScope, publ ic ScriptWrappable {
23 DEFINE_WRAPPERTYPEINFO();
24 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(WorkletGlobalScope);
25 public:
26 #if !ENABLE(OILPAN)
27 using RefCounted<WorkletGlobalScope>::ref;
28 using RefCounted<WorkletGlobalScope>::deref;
29 #endif
30
31 // The url and userAgent arguments are inherited from the parent
32 // ExecutionContext for Worklets.
33 static PassRefPtrWillBeRawPtr<WorkletGlobalScope> create(const KURL&, const String& userAgent, v8::Isolate*);
34 ~WorkletGlobalScope() override;
35
36 bool isWorkletGlobalScope() const final { return true; }
37
38
39 // WorkerOrWorkletGlobalScope
40 ScriptWrappable* scriptWrappable() const final { return const_cast<WorkletGl obalScope*>(this); }
41 WorkerOrWorkletScriptController* script() final { return m_script.get(); }
42
43 // ScriptWrappable
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;
46
47 // ExecutionContext
48 void disableEval(const String& errorMessage) final;
49 String userAgent() const final { return m_userAgent; }
50 SecurityContext& securityContext() final { return *this; }
51 EventQueue* eventQueue() const final { ASSERT_NOT_REACHED(); return nullptr; } // WorkletGlobalScopes don't have an event queue.
52 bool isSecureContext(String& errorMessage, const SecureContextCheck = Standa rdSecureContextCheck) const final;
53
54 using SecurityContext::securityOrigin;
55 using SecurityContext::contentSecurityPolicy;
56
57 DOMTimerCoordinator* timers() final { ASSERT_NOT_REACHED(); return nullptr; } // WorkletGlobalScopes don't have timers.
58 void postTask(const WebTraceLocation&, PassOwnPtr<ExecutionContextTask>) ove rride
59 {
60 // TODO(ikilpatrick): implement.
61 ASSERT_NOT_REACHED();
62 }
63
64 // TODO(ikilpatrick): implement when we implement devtools support.
65 void reportBlockedScriptExecutionToInspector(const String& directiveText) fi nal { }
66 void addConsoleMessage(PassRefPtrWillBeRawPtr<ConsoleMessage>) final { }
67 void logExceptionToConsole(const String& errorMessage, int scriptId, const S tring& sourceURL, int lineNumber, int columnNumber, PassRefPtrWillBeRawPtr<Scrip tCallStack>) final { }
68
69 DECLARE_VIRTUAL_TRACE();
70
71 private:
72 #if !ENABLE(OILPAN)
73 void refExecutionContext() final { ref(); }
74 void derefExecutionContext() final { deref(); }
75 #endif
76
77 WorkletGlobalScope(const KURL&, const String& userAgent, v8::Isolate*);
78
79 const KURL& virtualURL() const final { return m_url; }
80 KURL virtualCompleteURL(const String&) const final;
81
82 EventTarget* errorEventTarget() final { return nullptr; }
83 void didUpdateSecurityOrigin() final { }
84
85 KURL m_url;
86 String m_userAgent;
87 OwnPtrWillBeMember<WorkerOrWorkletScriptController> m_script;
88 };
89
90 DEFINE_TYPE_CASTS(WorkletGlobalScope, ExecutionContext, context, context->isWork letGlobalScope(), context.isWorkletGlobalScope());
91
92 } // namespace blink
93
94 #endif // WorkletGlobalScope_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698