Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(31)

Unified Diff: include/v8.h

Issue 236833009: Export [Dis]allowJavascriptExecutionScope (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/v8.h
diff --git a/include/v8.h b/include/v8.h
index 5c7e8db99008161ec6f758944ad2a7bcfc227971..fe020819c0b382af4a1891553cf85e5c5ee5284d 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();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698