| 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 fc51232d7f5d635423021db752bd6d01bb9ff217..282158a3328522ec49e2c324b61fd93c444e7f86 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 {
|
| @@ -29,6 +30,8 @@ class CORE_EXPORT ScriptModule final {
|
| bool instantiate(ScriptState*);
|
| void evaluate(ScriptState*);
|
|
|
| + Vector<String> moduleRequests(ScriptState*);
|
| +
|
| bool isNull() const { return m_module->isEmpty(); }
|
|
|
| private:
|
|
|