Index: Source/bindings/core/v8/SerializationTag.h |
diff --git a/Source/bindings/core/v8/SerializationTag.h b/Source/bindings/core/v8/SerializationTag.h |
index bb0c4eceed003dd687da6690a71203927312a113..af0e1ce7572cb143a4f2c935bfcf6e3973e41252 100644 |
--- a/Source/bindings/core/v8/SerializationTag.h |
+++ b/Source/bindings/core/v8/SerializationTag.h |
@@ -60,6 +60,8 @@ enum SerializationTag { |
ArrayBufferTag = 'B', // byteLength:uint32_t, data:byte[byteLength] -> ArrayBuffer (ref) |
ArrayBufferTransferTag = 't', // index:uint32_t -> ArrayBuffer. For ArrayBuffer transfer |
ArrayBufferViewTag = 'V', // subtag:byte, byteOffset:uint32_t, byteLength:uint32_t -> ArrayBufferView (ref). Consumes an ArrayBuffer from the top of the deserialization stack. |
+ // TODO(binji): better tag characters? Most of the good ones are already taken. |
haraken
2015/06/11 05:59:28
Remove this comment.
|
+ SharedArrayBufferTransferTag = 'u', // index:uint32_t -> SharedArrayBuffer. For SharedArrayBuffer transfer |
CryptoKeyTag = 'K', // subtag:byte, props, usages:uint32_t, keyDataLength:uint32_t, keyData:byte[keyDataLength] |
// If subtag=AesKeyTag: |
// props = keyLengthBytes:uint32_t, algorithmId:uint32_t |