Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: src/isolate.h

Issue 2046423002: [snapshot] introduce SnapshotCreator API. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/heap/heap.cc ('k') | src/snapshot/startup-serializer.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « src/heap/heap.cc ('k') | src/snapshot/startup-serializer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698