| Index: third_party/WebKit/Source/bindings/core/v8/ScriptModule.h
|
| diff --git a/third_party/WebKit/Source/bindings/core/v8/ScriptModule.h b/third_party/WebKit/Source/bindings/core/v8/ScriptModule.h
|
| index a7c0fa0771f9e3c45e7b1969144450ce2d878cb2..bc5a9c36e3342aa77189877d0a36ff6b7656fd82 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/ScriptModule.h
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/ScriptModule.h
|
| @@ -10,6 +10,7 @@
|
| #include "core/CoreExport.h"
|
| #include "v8/include/v8.h"
|
| #include "wtf/Allocator.h"
|
| +#include "wtf/Vector.h"
|
| #include "wtf/text/WTFString.h"
|
|
|
| namespace blink {
|
| @@ -37,6 +38,8 @@ class CORE_EXPORT ScriptModule final {
|
| ScriptValue instantiate(ScriptState*);
|
| void evaluate(ScriptState*);
|
|
|
| + Vector<String> moduleRequests(ScriptState*);
|
| +
|
| bool isNull() const { return !m_module || m_module->isEmpty(); }
|
|
|
| private:
|
|
|