| Index: sky/engine/core/app/Module.h
|
| diff --git a/sky/engine/core/app/Module.h b/sky/engine/core/app/Module.h
|
| index 525b62734f9b2317118509768782d70c2685330e..d7e553a4ce2e85f89dd19810b64ac529da839398 100644
|
| --- a/sky/engine/core/app/Module.h
|
| +++ b/sky/engine/core/app/Module.h
|
| @@ -11,7 +11,6 @@ namespace blink {
|
| class Application;
|
|
|
| class Module : public AbstractModule {
|
| - DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| static PassRefPtr<Module> create(ExecutionContext* context,
|
| Application* application,
|
| @@ -24,9 +23,6 @@ public:
|
|
|
| Application* application() const { return application_.get(); }
|
|
|
| - void setExports(ScriptState*, const ScriptValue& exports);
|
| - const ScriptValue& exports(ScriptState*) const;
|
| -
|
| private:
|
| Module(ExecutionContext* context,
|
| Application* application,
|
| @@ -37,7 +33,6 @@ private:
|
| Application* GetApplication() override;
|
|
|
| RefPtr<Application> application_;
|
| - mutable ScriptValue exports_;
|
| };
|
|
|
| } // namespace blink
|
|
|