diff options
author | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-12 21:32:34 +0000 |
---|---|---|
committer | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-12-12 21:32:34 +0000 |
commit | 48c21631008649ad2575b16fe33b336858dcdde9 (patch) | |
tree | f6fd9761eb0001c806962937583ea15eafd7ed7b /gin/per_isolate_data.h | |
parent | edc3af84cd907175e0dd24bfc377d20c06fd7d0e (diff) | |
download | chromium_src-48c21631008649ad2575b16fe33b336858dcdde9.zip chromium_src-48c21631008649ad2575b16fe33b336858dcdde9.tar.gz chromium_src-48c21631008649ad2575b16fe33b336858dcdde9.tar.bz2 |
[gin] Turn gin into a component
This will allow for using gin from content and blink at the same time in
a component build
BUG=321631
R=abarth@chromium.org,aa@chromium.org
Review URL: https://codereview.chromium.org/101583004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@240425 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gin/per_isolate_data.h')
-rw-r--r-- | gin/per_isolate_data.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gin/per_isolate_data.h b/gin/per_isolate_data.h index 11bbc03..ed93545 100644 --- a/gin/per_isolate_data.h +++ b/gin/per_isolate_data.h @@ -8,6 +8,7 @@ #include <map> #include "base/basictypes.h" +#include "gin/gin_export.h" #include "gin/public/wrapper_info.h" #include "v8/include/v8.h" @@ -15,7 +16,7 @@ namespace gin { // There is one instance of PerIsolateData per v8::Isolate managed by Gin. This // class stores all the Gin-related data that varies per isolate. -class PerIsolateData { +class GIN_EXPORT PerIsolateData { public: explicit PerIsolateData(v8::Isolate* isolate); ~PerIsolateData(); |