Chromium Code Reviews| Index: src/isolate.h |
| diff --git a/src/isolate.h b/src/isolate.h |
| index 5c3bbb34726b33dffc7097d400bd8875840a5237..1c24c335004e734339e645258b291839bced0012 100644 |
| --- a/src/isolate.h |
| +++ b/src/isolate.h |
| @@ -62,6 +62,7 @@ class Counters; |
| class CpuFeatures; |
| class CpuProfiler; |
| class DeoptimizerData; |
| +class MaterializedObjectStore; |
|
Michael Starzinger
2014/01/14 09:50:18
nit: Can we alpha-sort the forward declarations?
Jarin
2014/01/27 15:40:58
Done.
|
| class Deserializer; |
| class EmptyStatement; |
| class ExternalCallbackScope; |
| @@ -869,6 +870,9 @@ class Isolate { |
| StubCache* stub_cache() { return stub_cache_; } |
| DeoptimizerData* deoptimizer_data() { return deoptimizer_data_; } |
| ThreadLocalTop* thread_local_top() { return &thread_local_top_; } |
| + MaterializedObjectStore* materialized_object_store() { |
| + return materialized_object_store_; |
| + } |
| MemoryAllocator* memory_allocator() { |
| return memory_allocator_; |
| @@ -1266,6 +1270,7 @@ class Isolate { |
| StatsTable* stats_table_; |
| StubCache* stub_cache_; |
| DeoptimizerData* deoptimizer_data_; |
| + MaterializedObjectStore* materialized_object_store_; |
| ThreadLocalTop thread_local_top_; |
| bool capture_stack_trace_for_uncaught_exceptions_; |
| int stack_trace_for_uncaught_exceptions_frame_limit_; |