Revision: 16994
Author:   [email protected]
Date:     Fri Sep 27 15:32:26 2013 UTC
Log:      Try to make MSVC happy about EscapableHandleScope.

[email protected]

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

Modified:
 /branches/bleeding_edge/include/v8.h

=======================================
--- /branches/bleeding_edge/include/v8.h        Fri Sep 27 11:32:13 2013 UTC
+++ /branches/bleeding_edge/include/v8.h        Fri Sep 27 15:32:26 2013 UTC
@@ -859,6 +859,13 @@
  private:
   internal::Object** Escape(internal::Object** escape_value);

+  // Make it hard to create heap-allocated or illegal handle scopes by
+  // disallowing certain operations.
+  EscapableHandleScope(const EscapableHandleScope&);
+  void operator=(const EscapableHandleScope&);
+  void* operator new(size_t size);
+  void operator delete(void*, size_t);
+
   internal::Object** escape_slot_;
 };

--
--
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