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

Unified Diff: src/snapshot-source-sink.h

Issue 781443002: Encode reservation meta data in the snapshot blob. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@snapshotformat
Patch Set: Created 6 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: src/snapshot-source-sink.h
diff --git a/src/snapshot-source-sink.h b/src/snapshot-source-sink.h
index 68901a13190135a9cd457e968ec88f96285058e8..216efef56f6896f741f80001da7dc4d62ea1970b 100644
--- a/src/snapshot-source-sink.h
+++ b/src/snapshot-source-sink.h
@@ -19,7 +19,7 @@ namespace internal {
*/
class SnapshotByteSource FINAL {
public:
- SnapshotByteSource(const byte* array, int length);
+ explicit SnapshotByteSource(Vector<const byte> payload);
~SnapshotByteSource();
bool HasMore() { return position_ < length_; }
@@ -83,8 +83,8 @@ class SnapshotByteSink {
}
void PutInt(uintptr_t integer, const char* description);
- void PutRaw(byte* data, int number_of_bytes, const char* description);
- void PutBlob(byte* data, int number_of_bytes, const char* description);
+ void PutRaw(const byte* data, int number_of_bytes, const char* description);
+ void PutBlob(Vector<const byte> blob, const char* description);
int Position() { return data_.length(); }
const List<byte>& data() const { return data_; }
« src/serialize.cc ('K') | « src/snapshot-external.cc ('k') | src/snapshot-source-sink.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698