Tentative Windows dll build fix: Don't V8_EXPORT ScriptCompiler::Source.
authormarja@chromium.org <marja@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Fri, 21 Mar 2014 15:24:36 +0000 (15:24 +0000)
committermarja@chromium.org <marja@chromium.org@ce2b1a6d-e550-0410-aec6-3dcde31c8c00>
Fri, 21 Mar 2014 15:24:36 +0000 (15:24 +0000)
For more information, see the bug. Compare to ScriptOrigin
which is not exported either.

BUG=v8:3228
LOG=Y
R=dcarney@chromium.org, jkummerow@chromium.org

Review URL: https://codereview.chromium.org/207703004

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@20170 ce2b1a6d-e550-0410-aec6-3dcde31c8c00

include/v8.h

index 7a153b0..7f1f8fb 100644 (file)
@@ -1126,7 +1126,7 @@ class V8_EXPORT ScriptCompiler {
    * Source code which can be then compiled to a UnboundScript or
    * BoundScript.
    */
-  class V8_EXPORT Source {
+  class Source {
    public:
     // Source takes ownership of CachedData.
     Source(Local<String> source_string, const ScriptOrigin& origin,