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

Unified Diff: vm/object.h

Issue 8772061: First step towards generation of application script snapshots (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: '' Created 9 years 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 side-by-side diff with in-line comments
Download patch
Index: vm/object.h
===================================================================
--- vm/object.h (revision 2043)
+++ vm/object.h (working copy)
@@ -98,7 +98,7 @@
#define SNAPSHOT_READER_SUPPORT(object) \
static Raw##object* ReadFrom( \
- SnapshotReader* reader, intptr_t object_id, bool classes_serialized); \
+ SnapshotReader* reader, intptr_t object_id, Snapshot::Kind); \
friend class SnapshotReader; \
#define HEAP_OBJECT_IMPLEMENTATION(object, super) \
@@ -2573,7 +2573,7 @@
template<typename HandleType, typename ElementType>
static RawString* ReadFromImpl(SnapshotReader* reader,
intptr_t object_id,
- bool classes_serialized);
+ Snapshot::Kind kind);
HEAP_OBJECT_IMPLEMENTATION(String, Instance);
};

Powered by Google App Engine
This is Rietveld 408576698