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