diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2011-07-05 11:41:56 -0700 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2011-07-05 11:41:56 -0700 |
commit | 6054dcc1302d1a1ef51e215dcf1ad16fb967f1ba (patch) | |
tree | bfdb8d58cdbe55de1e1e05a8331b0a1623f9aaa5 /deps/v8/src/isolate.h | |
parent | 33af2720f26c2b25bc7f75ce7eb454ff99db6d35 (diff) | |
download | node-new-6054dcc1302d1a1ef51e215dcf1ad16fb967f1ba.tar.gz |
Upgrade V8 to 3.4.9
Diffstat (limited to 'deps/v8/src/isolate.h')
-rw-r--r-- | deps/v8/src/isolate.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/deps/v8/src/isolate.h b/deps/v8/src/isolate.h index c623d433bb..be8141a37b 100644 --- a/deps/v8/src/isolate.h +++ b/deps/v8/src/isolate.h @@ -332,6 +332,8 @@ class HashMap; V(int, bad_char_shift_table, kUC16AlphabetSize) \ V(int, good_suffix_shift_table, (kBMMaxShift + 1)) \ V(int, suffix_table, (kBMMaxShift + 1)) \ + V(uint32_t, random_seed, 2) \ + V(uint32_t, private_random_seed, 2) \ ISOLATE_INIT_DEBUG_ARRAY_LIST(V) typedef List<HeapObject*, PreallocatedStorage> DebugObjectCache; @@ -978,8 +980,6 @@ class Isolate { } #endif - void ResetEagerOptimizingData(); - void SetData(void* data) { embedder_data_ = data; } void* GetData() { return embedder_data_; } |