| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef V8_ISOLATE_H_ | 5 #ifndef V8_ISOLATE_H_ |
| 6 #define V8_ISOLATE_H_ | 6 #define V8_ISOLATE_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <queue> | 9 #include <queue> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 class ExternalReferenceTable; | 62 class ExternalReferenceTable; |
| 63 class Factory; | 63 class Factory; |
| 64 class HandleScopeImplementer; | 64 class HandleScopeImplementer; |
| 65 class HeapProfiler; | 65 class HeapProfiler; |
| 66 class HStatistics; | 66 class HStatistics; |
| 67 class HTracer; | 67 class HTracer; |
| 68 class InlineRuntimeFunctionsTable; | 68 class InlineRuntimeFunctionsTable; |
| 69 class InnerPointerToCodeCache; | 69 class InnerPointerToCodeCache; |
| 70 class Logger; | 70 class Logger; |
| 71 class MaterializedObjectStore; | 71 class MaterializedObjectStore; |
| 72 class PositionsRecorder; | |
| 73 class RegExpStack; | 72 class RegExpStack; |
| 74 class SaveContext; | 73 class SaveContext; |
| 75 class StatsTable; | 74 class StatsTable; |
| 76 class StringTracker; | 75 class StringTracker; |
| 77 class StubCache; | 76 class StubCache; |
| 78 class SweeperThread; | 77 class SweeperThread; |
| 79 class ThreadManager; | 78 class ThreadManager; |
| 80 class ThreadState; | 79 class ThreadState; |
| 81 class ThreadVisitor; // Defined in v8threads.h | 80 class ThreadVisitor; // Defined in v8threads.h |
| 82 class UnicodeCache; | 81 class UnicodeCache; |
| (...skipping 1557 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1640 | 1639 |
| 1641 EmbeddedVector<char, 128> filename_; | 1640 EmbeddedVector<char, 128> filename_; |
| 1642 FILE* file_; | 1641 FILE* file_; |
| 1643 int scope_depth_; | 1642 int scope_depth_; |
| 1644 }; | 1643 }; |
| 1645 | 1644 |
| 1646 } // namespace internal | 1645 } // namespace internal |
| 1647 } // namespace v8 | 1646 } // namespace v8 |
| 1648 | 1647 |
| 1649 #endif // V8_ISOLATE_H_ | 1648 #endif // V8_ISOLATE_H_ |
| OLD | NEW |