| Index: gin/per_context_data.h
|
| diff --git a/gin/per_context_data.h b/gin/per_context_data.h
|
| index ea8b169a840a035b65ebec7712a6053d4ca034ed..3ad68d2d37cfaf712f6ec44d507a8a45974da16d 100644
|
| --- a/gin/per_context_data.h
|
| +++ b/gin/per_context_data.h
|
| @@ -8,6 +8,7 @@
|
| #include "base/basictypes.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/memory/scoped_vector.h"
|
| +#include "gin/gin_export.h"
|
| #include "v8/include/v8.h"
|
|
|
| namespace gin {
|
| @@ -16,7 +17,7 @@ class Runner;
|
|
|
| // Embedders can store additional per-context data by subclassing
|
| // ContextSupplement.
|
| -class ContextSupplement {
|
| +class GIN_EXPORT ContextSupplement {
|
| public:
|
| ContextSupplement();
|
| virtual ~ContextSupplement();
|
| @@ -31,7 +32,7 @@ class ContextSupplement {
|
|
|
| // There is one instance of PerContextData per v8::Context managed by Gin. This
|
| // class stores all the Gin-related data that varies per context.
|
| -class PerContextData {
|
| +class GIN_EXPORT PerContextData {
|
| public:
|
| explicit PerContextData(v8::Handle<v8::Context> context);
|
| ~PerContextData();
|
|
|