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

Unified Diff: lib/isolate.cc

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: lib/isolate.cc
===================================================================
--- lib/isolate.cc (revision 2043)
+++ lib/isolate.cc (working copy)
@@ -46,7 +46,7 @@
static uint8_t* SerializeObject(const Instance& obj) {
uint8_t* result = NULL;
- SnapshotWriter writer(false, &result, &allocator);
+ SnapshotWriter writer(Snapshot::kMessage, &result, &allocator);
writer.WriteObject(obj.raw());
writer.FinalizeBuffer();
return result;

Powered by Google App Engine
This is Rietveld 408576698