From 22f7451e6c7538ed60331b4a152fcb483fe85e7e Mon Sep 17 00:00:00 2001 From: "yangguo@chromium.org" Date: Mon, 14 Apr 2014 19:34:32 +0000 Subject: [PATCH] Export [Dis]allowJavascriptExecutionScope R=yangguo@chromium.org Review URL: https://codereview.chromium.org/236833009 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@20737 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- include/v8.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/v8.h b/include/v8.h index 5c7e8db..fe02081 100644 --- a/include/v8.h +++ b/include/v8.h @@ -4099,7 +4099,7 @@ class V8_EXPORT Isolate { /** * Assert that no Javascript code is invoked. */ - class DisallowJavascriptExecutionScope { + class V8_EXPORT DisallowJavascriptExecutionScope { public: enum OnFailure { CRASH_ON_FAILURE, THROW_ON_FAILURE }; @@ -4120,7 +4120,7 @@ class V8_EXPORT Isolate { /** * Introduce exception to DisallowJavascriptExecutionScope. */ - class AllowJavascriptExecutionScope { + class V8_EXPORT AllowJavascriptExecutionScope { public: explicit AllowJavascriptExecutionScope(Isolate* isolate); ~AllowJavascriptExecutionScope(); -- 2.7.4