summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJohn Reck <jreck@google.com>2010-11-02 12:39:01 -0700
committerJohn Reck <jreck@google.com>2010-11-02 12:40:32 -0700
commit5913587db4c6bab03d97bfe44b06289fd6d7270d (patch)
tree96ab490452936f90e6e51a0ef86baee781c7dc46 /include
parentf87a203d89e1bbb6708282e0b64dbd13d59b723d (diff)
downloadandroid_external_v8-5913587db4c6bab03d97bfe44b06289fd6d7270d.tar.gz
android_external_v8-5913587db4c6bab03d97bfe44b06289fd6d7270d.tar.bz2
android_external_v8-5913587db4c6bab03d97bfe44b06289fd6d7270d.zip
Update V8 to r5716 as required by WebKit r70949
Change-Id: I0d5cd05bb0427af33e5c9f6efdc209366a32bde3
Diffstat (limited to 'include')
-rw-r--r--include/v8.h11
1 files changed, 8 insertions, 3 deletions
diff --git a/include/v8.h b/include/v8.h
index ef9a4116..89502cb9 100644
--- a/include/v8.h
+++ b/include/v8.h
@@ -467,16 +467,21 @@ class V8EXPORT HandleScope {
// typedef in the ImplementationUtilities class.
class V8EXPORT Data {
public:
- int extensions;
internal::Object** next;
internal::Object** limit;
+ int level;
+
inline void Initialize() {
- extensions = -1;
next = limit = NULL;
+ level = 0;
}
};
+
+ void Leave();
- Data previous_;
+
+ internal::Object** prev_next_;
+ internal::Object** prev_limit_;
// Allow for the active closing of HandleScopes which allows to pass a handle
// from the HandleScope being closed to the next top most HandleScope.