| 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 <queue> | 8 #include <queue> |
| 9 #include <set> | 9 #include <set> |
| 10 | 10 |
| (...skipping 1401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1412 friend class HandleScopeImplementer; | 1412 friend class HandleScopeImplementer; |
| 1413 friend class OptimizingCompileDispatcher; | 1413 friend class OptimizingCompileDispatcher; |
| 1414 friend class SweeperThread; | 1414 friend class SweeperThread; |
| 1415 friend class ThreadManager; | 1415 friend class ThreadManager; |
| 1416 friend class Simulator; | 1416 friend class Simulator; |
| 1417 friend class StackGuard; | 1417 friend class StackGuard; |
| 1418 friend class ThreadId; | 1418 friend class ThreadId; |
| 1419 friend class v8::Isolate; | 1419 friend class v8::Isolate; |
| 1420 friend class v8::Locker; | 1420 friend class v8::Locker; |
| 1421 friend class v8::Unlocker; | 1421 friend class v8::Unlocker; |
| 1422 friend class v8::SnapshotCreator; |
| 1422 friend v8::StartupData v8::V8::CreateSnapshotDataBlob(const char*); | 1423 friend v8::StartupData v8::V8::CreateSnapshotDataBlob(const char*); |
| 1423 friend v8::StartupData v8::V8::WarmUpSnapshotDataBlob(v8::StartupData, | 1424 friend v8::StartupData v8::V8::WarmUpSnapshotDataBlob(v8::StartupData, |
| 1424 const char*); | 1425 const char*); |
| 1425 | 1426 |
| 1426 DISALLOW_COPY_AND_ASSIGN(Isolate); | 1427 DISALLOW_COPY_AND_ASSIGN(Isolate); |
| 1427 }; | 1428 }; |
| 1428 | 1429 |
| 1429 | 1430 |
| 1430 #undef FIELD_ACCESSOR | 1431 #undef FIELD_ACCESSOR |
| 1431 #undef THREAD_LOCAL_TOP_ACCESSOR | 1432 #undef THREAD_LOCAL_TOP_ACCESSOR |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1639 | 1640 |
| 1640 EmbeddedVector<char, 128> filename_; | 1641 EmbeddedVector<char, 128> filename_; |
| 1641 FILE* file_; | 1642 FILE* file_; |
| 1642 int scope_depth_; | 1643 int scope_depth_; |
| 1643 }; | 1644 }; |
| 1644 | 1645 |
| 1645 } // namespace internal | 1646 } // namespace internal |
| 1646 } // namespace v8 | 1647 } // namespace v8 |
| 1647 | 1648 |
| 1648 #endif // V8_ISOLATE_H_ | 1649 #endif // V8_ISOLATE_H_ |
| OLD | NEW |