Chromium Code Reviews| Index: src/isolate.h |
| diff --git a/src/isolate.h b/src/isolate.h |
| index f0854e510e510c445c3a1f610ad82539d388e769..6380fb4318a3df430d715d0ee45a10927a1dba48 100644 |
| --- a/src/isolate.h |
| +++ b/src/isolate.h |
| @@ -77,6 +77,7 @@ class NoAllocationStringAllocator; |
| class InnerPointerToCodeCache; |
| class MarkingThread; |
| class PreallocatedMemoryThread; |
| +class RandomNumberGenerator; |
| class RegExpStack; |
| class SaveContext; |
| class UnicodeCache; |
| @@ -1125,6 +1126,8 @@ class Isolate { |
| void* stress_deopt_count_address() { return &stress_deopt_count_; } |
| + inline RandomNumberGenerator* random_number_generator() V8_WARN_UNUSED_RESULT; |
|
Michael Starzinger
2013/09/09 17:11:25
I don't think it is vitally important that the res
Benedikt Meurer
2013/09/10 06:08:07
Done.
|
| + |
| // Given an address occupied by a live code object, return that object. |
| Object* FindCodeObject(Address a); |
| @@ -1299,6 +1302,7 @@ class Isolate { |
| DateCache* date_cache_; |
| unibrow::Mapping<unibrow::Ecma262Canonicalize> interp_canonicalize_mapping_; |
| CodeStubInterfaceDescriptor* code_stub_interface_descriptors_; |
| + RandomNumberGenerator* random_number_generator_; |
| // True if fatal error has been signaled for this isolate. |
| bool has_fatal_error_; |