Revision: 16995
Author:   mstarzin...@chromium.org
Date:     Fri Sep 27 15:44:41 2013 UTC
Log:      Merged r16994 into trunk branch.

Try to make MSVC happy about EscapableHandleScope.

R=jkumme...@chromium.org

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

Modified:
 /trunk/include/v8.h
 /trunk/src/version.cc

=======================================
--- /trunk/include/v8.h Fri Sep 27 07:27:26 2013 UTC
+++ /trunk/include/v8.h Fri Sep 27 15:44:41 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_;
 };

=======================================
--- /trunk/src/version.cc       Fri Sep 27 11:20:51 2013 UTC
+++ /trunk/src/version.cc       Fri Sep 27 15:44:41 2013 UTC
@@ -35,7 +35,7 @@
 #define MAJOR_VERSION     3
 #define MINOR_VERSION     22
 #define BUILD_NUMBER      3
-#define PATCH_LEVEL       1
+#define PATCH_LEVEL       2
 // Use 1 for candidates and 0 otherwise.
 // (Boolean macro values are not supported by all preprocessors.)
 #define IS_CANDIDATE_VERSION 0

--
--
v8-dev mailing list
v8-dev@googlegroups.com
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 v8-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to