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

Unified Diff: src/value-serializer.h

Issue 2274693002: Add an experimental public API for value serialization. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: explicitly manage the pointer rather than using std::unique_ptr, to deal with C4521 (Windows) Created 4 years, 4 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
Index: src/value-serializer.h
diff --git a/src/value-serializer.h b/src/value-serializer.h
index ab9c66489963569e8d53f5fcca31b013bdf59561..c94f883a825fea752f4d712c3bf235beb1009e18 100644
--- a/src/value-serializer.h
+++ b/src/value-serializer.h
@@ -116,6 +116,13 @@ class ValueDeserializer {
Maybe<bool> ReadHeader() WARN_UNUSED_RESULT;
/*
+ * Reads the underlying wire format version. Likely mostly to be useful to
+ * legacy code reading old wire format versions. Must be called after
+ * ReadHeader.
+ */
+ uint32_t GetWireFormatVersion() const { return version_; }
+
+ /*
* Deserializes a V8 object from the buffer.
*/
MaybeHandle<Object> ReadObject() WARN_UNUSED_RESULT;
« src/api.cc ('K') | « src/counters.h ('k') | test/unittests/value-serializer-unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698