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

Unified Diff: runtime/vm/raw_object.h

Issue 2161853002: Remove dead full snapshot support from the recursive descent serializer. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: . Created 4 years, 5 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/object.cc ('k') | runtime/vm/raw_object_snapshot.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/raw_object.h
diff --git a/runtime/vm/raw_object.h b/runtime/vm/raw_object.h
index 3f5a507d3a67dc74476be205e77057f4a596ccf5..19622b7001b385c6e170d2cd36799f0d40b6776b 100644
--- a/runtime/vm/raw_object.h
+++ b/runtime/vm/raw_object.h
@@ -1171,7 +1171,6 @@ class RawObjectPool : public RawObject {
Entry* first_entry() { return &ptr()->data()[0]; }
friend class Object;
- friend class SnapshotReader;
};
@@ -1254,7 +1253,6 @@ class RawPcDescriptors : public RawObject {
const uint8_t* data() const { OPEN_ARRAY_START(uint8_t, intptr_t); }
friend class Object;
- friend class SnapshotReader;
};
@@ -1271,7 +1269,6 @@ class RawCodeSourceMap : public RawObject {
const uint8_t* data() const { OPEN_ARRAY_START(uint8_t, intptr_t); }
friend class Object;
- friend class SnapshotReader;
};
@@ -1298,8 +1295,6 @@ class RawStackmap : public RawObject {
// Variable length data follows here (bitmap of the stack layout).
uint8_t* data() { OPEN_ARRAY_START(uint8_t, uint8_t); }
const uint8_t* data() const { OPEN_ARRAY_START(uint8_t, uint8_t); }
-
- friend class SnapshotReader;
};
@@ -1373,7 +1368,6 @@ class RawLocalVarDescriptors : public RawObject {
}
friend class Object;
- friend class SnapshotReader;
};
@@ -1403,7 +1397,6 @@ class RawExceptionHandlers : public RawObject {
HandlerInfo* data() { OPEN_ARRAY_START(HandlerInfo, intptr_t); }
friend class Object;
- friend class SnapshotReader;
};
« no previous file with comments | « runtime/vm/object.cc ('k') | runtime/vm/raw_object_snapshot.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698