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

Side by Side Diff: third_party/WebKit/Source/core/dom/ModuleScript.h

Issue 2555653002: [WIP Prototype] ES6 https://html.spec.whatwg.org/#fetch-a-single-module-script implementation (Closed)
Patch Set: ModuleTreeLinkerTest.fetchTreeInstantiationFailure Created 3 years, 8 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
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 ModuleScript_h 5 #ifndef ModuleScript_h
6 #define ModuleScript_h 6 #define ModuleScript_h
7 7
8 #include "bindings/core/v8/ScriptModule.h" 8 #include "bindings/core/v8/ScriptModule.h"
9 #include "bindings/core/v8/ScriptValue.h" 9 #include "bindings/core/v8/ScriptValue.h"
10 #include "bindings/core/v8/ScriptWrappable.h" 10 #include "bindings/core/v8/ScriptWrappable.h"
11 #include "bindings/core/v8/TraceWrapperV8Reference.h" 11 #include "bindings/core/v8/TraceWrapperV8Reference.h"
12 #include "core/CoreExport.h" 12 #include "core/CoreExport.h"
13 #include "core/dom/Modulator.h" 13 #include "core/dom/Modulator.h"
14 #include "core/dom/Script.h" 14 #include "core/dom/Script.h"
15 #include "platform/heap/Handle.h" 15 #include "platform/heap/Handle.h"
16 #include "platform/loader/fetch/ResourceLoaderOptions.h" 16 #include "platform/loader/fetch/ResourceLoaderOptions.h"
17 #include "platform/weborigin/KURL.h" 17 #include "platform/weborigin/KURL.h"
18 #include "public/platform/WebURLRequest.h" 18 #include "public/platform/WebURLRequest.h"
19 19
20 namespace blink { 20 namespace blink {
21 21
22 class ScriptModuleResolver;
23
22 // https://html.spec.whatwg.org/multipage/webappapis.html#concept-module-script- instantiation-state 24 // https://html.spec.whatwg.org/multipage/webappapis.html#concept-module-script- instantiation-state
23 enum class ModuleInstantiationState { 25 enum class ModuleInstantiationState {
24 kUninstantiated, 26 kUninstantiated,
25 kErrored, 27 kErrored,
26 kInstantiated, 28 kInstantiated,
27 }; 29 };
28 30
29 // ModuleScript is a model object for the "module script" spec concept. 31 // ModuleScript is a model object for the "module script" spec concept.
30 // https://html.spec.whatwg.org/multipage/webappapis.html#module-script 32 // https://html.spec.whatwg.org/multipage/webappapis.html#module-script
31 class CORE_EXPORT ModuleScript final : public Script, public TraceWrapperBase { 33 class CORE_EXPORT ModuleScript final : public Script, public TraceWrapperBase {
32 public: 34 public:
33 static ModuleScript* Create( 35 static ModuleScript* Create(
34 Modulator* settings_object, 36 Modulator* settings_object,
35 ScriptModule record, 37 ScriptModule record,
36 const KURL& base_url, 38 const KURL& base_url,
37 const String& nonce, 39 const String& nonce,
38 ParserDisposition parser_state, 40 ParserDisposition parser_state,
39 WebURLRequest::FetchCredentialsMode credentials_mode) { 41 WebURLRequest::FetchCredentialsMode credentials_mode) {
40 return new ModuleScript(settings_object, record, base_url, nonce, 42 return new ModuleScript(settings_object, record, base_url, nonce,
41 parser_state, credentials_mode); 43 parser_state, credentials_mode);
42 } 44 }
43 ~ModuleScript() override = default; 45 ~ModuleScript() override = default;
44 46
45 ScriptModule& Record() { return record_; } 47 const ScriptModule& Record() const { return record_; }
46 void ClearRecord() { record_ = ScriptModule(); }
47 const KURL& BaseURL() const { return base_url_; } 48 const KURL& BaseURL() const { return base_url_; }
48 49
49 ModuleInstantiationState InstantiationState() const { 50 ModuleInstantiationState InstantiationState() const {
50 return instantiation_state_; 51 return instantiation_state_;
51 } 52 }
52 53
53 void SetInstantiationSuccess(); 54 void SetInstantiationSuccess();
54 void SetInstantiationError(v8::Isolate*, v8::Local<v8::Value> error); 55 void SetInstantiationErrorAndClearRecord(ScriptValue error);
55 56
56 ParserDisposition ParserState() const { return parser_state_; } 57 ParserDisposition ParserState() const { return parser_state_; }
57 WebURLRequest::FetchCredentialsMode CredentialsMode() const { 58 WebURLRequest::FetchCredentialsMode CredentialsMode() const {
58 return credentials_mode_; 59 return credentials_mode_;
59 } 60 }
60 const String& Nonce() const { return nonce_; } 61 const String& Nonce() const { return nonce_; }
61 62
63 v8::Local<v8::Value> CreateInstantiationError(v8::Isolate* isolate) const {
64 return instantiation_error_.NewLocal(isolate);
65 }
66
62 DECLARE_TRACE(); 67 DECLARE_TRACE();
63 DECLARE_TRACE_WRAPPERS(); 68 DECLARE_TRACE_WRAPPERS();
64 69
65 private: 70 private:
66 ModuleScript(Modulator* settings_object, 71 ModuleScript(Modulator* settings_object,
67 ScriptModule record, 72 ScriptModule record,
68 const KURL& base_url, 73 const KURL& base_url,
69 const String& nonce, 74 const String& nonce,
70 ParserDisposition parser_state, 75 ParserDisposition parser_state,
71 WebURLRequest::FetchCredentialsMode credentials_mode) 76 WebURLRequest::FetchCredentialsMode credentials_mode)
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 // https://html.spec.whatwg.org/multipage/webappapis.html#concept-module-scrip t-parser 118 // https://html.spec.whatwg.org/multipage/webappapis.html#concept-module-scrip t-parser
114 const ParserDisposition parser_state_; 119 const ParserDisposition parser_state_;
115 120
116 // https://html.spec.whatwg.org/multipage/webappapis.html#concept-module-scrip t-credentials-mode 121 // https://html.spec.whatwg.org/multipage/webappapis.html#concept-module-scrip t-credentials-mode
117 const WebURLRequest::FetchCredentialsMode credentials_mode_; 122 const WebURLRequest::FetchCredentialsMode credentials_mode_;
118 }; 123 };
119 124
120 } // namespace blink 125 } // namespace blink
121 126
122 #endif 127 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698