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

Unified Diff: include/v8.h

Issue 24538002: add isolate parameter to ThrowException (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 3 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 | samples/lineprocessor.cc » ('j') | 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 62a1cb32906e57d8641373278678bb73b034ac63..9c8ccc4a5dc4238c6ee5432371dbc177f4828049 100644
--- a/include/v8.h
+++ b/include/v8.h
@@ -3797,6 +3797,10 @@ typedef void (*MessageCallback)(Handle<Message> message, Handle<Value> error);
* operation; the caller must return immediately and only after the exception
* has been handled does it become legal to invoke JavaScript operations.
*/
+Local<Value> V8_EXPORT ThrowException(Isolate* isolate,
Michael Starzinger 2013/09/25 09:18:08 Does it make sense to even move this into the Isol
dcarney 2013/09/25 09:29:36 sounds superior
+ Local<Value> exception);
+
+// TODO(dcarney): remove
Handle<Value> V8_EXPORT ThrowException(Handle<Value> exception);
/**
« no previous file with comments | « no previous file | samples/lineprocessor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698