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

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

Issue 2555653002: [WIP Prototype] ES6 https://html.spec.whatwg.org/#fetch-a-single-module-script implementation (Closed)
Patch Set: rebased 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 Modulator_h 5 #ifndef Modulator_h
6 #define Modulator_h 6 #define Modulator_h
7 7
8 #include "bindings/core/v8/ScriptWrappable.h" 8 #include "bindings/core/v8/ScriptWrappable.h"
9 #include "bindings/core/v8/V8PerContextData.h" 9 #include "bindings/core/v8/V8PerContextData.h"
10 #include "core/CoreExport.h" 10 #include "core/CoreExport.h"
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 const KURL& base_url); 97 const KURL& base_url);
98 98
99 virtual ScriptModule CompileModule(const String& script, 99 virtual ScriptModule CompileModule(const String& script,
100 const String& url_str, 100 const String& url_str,
101 AccessControlStatus) = 0; 101 AccessControlStatus) = 0;
102 102
103 virtual ScriptValue InstantiateModule(ScriptModule) = 0; 103 virtual ScriptValue InstantiateModule(ScriptModule) = 0;
104 104
105 virtual Vector<String> ModuleRequestsFromScriptModule(ScriptModule) = 0; 105 virtual Vector<String> ModuleRequestsFromScriptModule(ScriptModule) = 0;
106 106
107 virtual void ExecuteModule(const ModuleScript*) = 0;
108
107 private: 109 private:
108 friend class ModuleMap; 110 friend class ModuleMap;
109 111
110 // Fetches a single module script. 112 // Fetches a single module script.
111 // This is triggered from fetchSingle() implementation (which is in ModuleMap) 113 // This is triggered from fetchSingle() implementation (which is in ModuleMap)
112 // if the cached entry doesn't exist. 114 // if the cached entry doesn't exist.
113 // The client can be notified either synchronously or asynchronously. 115 // The client can be notified either synchronously or asynchronously.
114 virtual void FetchNewSingleModule(const ModuleScriptFetchRequest&, 116 virtual void FetchNewSingleModule(const ModuleScriptFetchRequest&,
115 ModuleGraphLevel, 117 ModuleGraphLevel,
116 ModuleScriptLoaderClient*) = 0; 118 ModuleScriptLoaderClient*) = 0;
117 }; 119 };
118 120
119 } // namespace blink 121 } // namespace blink
120 122
121 #endif 123 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/ClassicPendingScript.cpp ('k') | third_party/WebKit/Source/core/dom/ModulatorImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698