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

Unified Diff: runtime/vm/snapshot.cc

Issue 1149933007: Remove serializer whitelisting for 'dart:collection' (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/raw_object_snapshot.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/snapshot.cc
diff --git a/runtime/vm/snapshot.cc b/runtime/vm/snapshot.cc
index d6fae0ce199db76444957800dc75de5c209a633e..d9249db1d39e92b68cd45b38f272bac9b389c73b 100644
--- a/runtime/vm/snapshot.cc
+++ b/runtime/vm/snapshot.cc
@@ -2162,8 +2162,7 @@ void SnapshotWriter::WriteInstanceRef(RawObject* raw, RawClass* cls) {
bool SnapshotWriter::AllowObjectsInDartLibrary(RawLibrary* library) {
- return (library == object_store()->collection_library() ||
- library == object_store()->typed_data_library());
+ return library == object_store()->typed_data_library();
koda 2015/05/29 15:40:21 I'm not sure why this is still needed (by some uni
siva 2015/05/29 15:46:57 I believe it has to do with sending some typed dat
}
« no previous file with comments | « runtime/vm/raw_object_snapshot.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698