Revision: 16906
Author:   [email protected]
Date:     Tue Sep 24 07:49:37 2013 UTC
Log:      build fix for 16877

[email protected]
BUG=

Review URL: https://codereview.chromium.org/23498057
http://code.google.com/p/v8/source/detail?r=16906

Modified:
 /branches/bleeding_edge/src/api.cc

=======================================
--- /branches/bleeding_edge/src/api.cc  Mon Sep 23 14:43:41 2013 UTC
+++ /branches/bleeding_edge/src/api.cc  Tue Sep 24 07:49:37 2013 UTC
@@ -727,8 +727,9 @@


 void Context::Exit() {
-  i::Handle<i::Context> context = Utils::OpenHandle(this);
-  i::Isolate* isolate = context->GetIsolate();
+  // TODO(dcarney): fix this once chrome is fixed.
+  i::Isolate* isolate = i::Isolate::Current();
+  i::Handle<i::Context> context = i::Handle<i::Context>::null();
   ENTER_V8(isolate);
   if (!ApiCheck(isolate->handle_scope_implementer()->LeaveContext(context),
                 "v8::Context::Exit()",

--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to