OLD | NEW |
1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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 ModulatorImpl_h | 5 #ifndef ModulatorImpl_h |
6 #define ModulatorImpl_h | 6 #define ModulatorImpl_h |
7 | 7 |
8 #include "bindings/core/v8/ScriptModule.h" | 8 #include "bindings/core/v8/ScriptModule.h" |
9 #include "bindings/core/v8/ScriptWrappable.h" | 9 #include "bindings/core/v8/ScriptWrappable.h" |
10 #include "bindings/core/v8/TraceWrapperMember.h" | 10 #include "bindings/core/v8/TraceWrapperMember.h" |
11 #include "bindings/core/v8/V8PerIsolateData.h" | 11 #include "bindings/core/v8/V8PerIsolateData.h" |
12 #include "core/dom/Modulator.h" | 12 #include "core/dom/Modulator.h" |
13 #include "platform/heap/Handle.h" | 13 #include "platform/heap/Handle.h" |
14 | 14 |
15 namespace blink { | 15 namespace blink { |
16 | 16 |
17 class Document; | |
18 class ExecutionContext; | 17 class ExecutionContext; |
19 class ModuleMap; | 18 class ModuleMap; |
20 class ModuleScriptLoaderRegistry; | 19 class ModuleScriptLoaderRegistry; |
21 class ModuleTreeLinkerRegistry; | 20 class ModuleTreeLinkerRegistry; |
22 class ResourceFetcher; | 21 class ResourceFetcher; |
23 class ScriptState; | 22 class ScriptState; |
24 class WebTaskRunner; | 23 class WebTaskRunner; |
25 | 24 |
26 // ModulatorImpl is the implementation of Modulator interface, which represents | 25 // ModulatorImpl is the implementation of Modulator interface, which represents |
27 // "environment settings object" concept for module scripts. | 26 // "environment settings object" concept for module scripts. |
28 // ModulatorImpl serves as the backplane for tieing all ES6 module algorithm | 27 // ModulatorImpl serves as the backplane for tieing all ES6 module algorithm |
29 // components together. | 28 // components together. |
30 class ModulatorImpl final : public Modulator { | 29 class ModulatorImpl final : public Modulator { |
31 public: | 30 public: |
32 static ModulatorImpl* Create(RefPtr<ScriptState>, Document&); | 31 static ModulatorImpl* Create(RefPtr<ScriptState>, |
| 32 ExecutionContext&, |
| 33 ResourceFetcher*); |
33 | 34 |
34 virtual ~ModulatorImpl(); | 35 virtual ~ModulatorImpl(); |
35 DECLARE_TRACE(); | 36 DECLARE_TRACE(); |
36 DECLARE_VIRTUAL_TRACE_WRAPPERS(); | 37 DECLARE_VIRTUAL_TRACE_WRAPPERS(); |
37 | 38 |
38 private: | 39 private: |
39 // Implements Modulator | 40 // Implements Modulator |
40 | 41 |
41 ScriptModuleResolver* GetScriptModuleResolver() override { | 42 ScriptModuleResolver* GetScriptModuleResolver() override { |
42 return script_module_resolver_.Get(); | 43 return script_module_resolver_.Get(); |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
76 Member<ResourceFetcher> fetcher_; | 77 Member<ResourceFetcher> fetcher_; |
77 TraceWrapperMember<ModuleMap> map_; | 78 TraceWrapperMember<ModuleMap> map_; |
78 Member<ModuleScriptLoaderRegistry> loader_registry_; | 79 Member<ModuleScriptLoaderRegistry> loader_registry_; |
79 Member<ModuleTreeLinkerRegistry> tree_linker_registry_; | 80 Member<ModuleTreeLinkerRegistry> tree_linker_registry_; |
80 Member<ScriptModuleResolver> script_module_resolver_; | 81 Member<ScriptModuleResolver> script_module_resolver_; |
81 }; | 82 }; |
82 | 83 |
83 } // namespace blink | 84 } // namespace blink |
84 | 85 |
85 #endif | 86 #endif |
OLD | NEW |