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

Unified Diff: src/builtins.cc

Issue 55007: Mark some of the places we leave V8 via callbacks as transitions to... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 11 years, 9 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 | src/handles.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/builtins.cc
===================================================================
--- src/builtins.cc (revision 1629)
+++ src/builtins.cc (working copy)
@@ -376,7 +376,7 @@
v8::Handle<v8::Value> value;
{
// Leaving JavaScript.
- VMState state(OTHER);
+ VMState state(EXTERNAL);
value = callback(args);
}
if (value.IsEmpty()) {
@@ -437,7 +437,7 @@
v8::Handle<v8::Value> value;
{
// Leaving JavaScript.
- VMState state(OTHER);
+ VMState state(EXTERNAL);
value = callback(args);
}
if (value.IsEmpty()) {
« no previous file with comments | « no previous file | src/handles.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698