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

Unified Diff: chrome/common/extensions/api/cast_streaming_rtp_stream.idl

Issue 121543003: Set AES key and IV mask to CastSender (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comments Created 7 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
« no previous file with comments | « no previous file | chrome/renderer/extensions/cast_streaming_native_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/api/cast_streaming_rtp_stream.idl
diff --git a/chrome/common/extensions/api/cast_streaming_rtp_stream.idl b/chrome/common/extensions/api/cast_streaming_rtp_stream.idl
index b79cbf17e0da57b569b54a222306e622b1baff08..51fdd1d33076d8a6495b2d7c770be12f5c0c5666 100644
--- a/chrome/common/extensions/api/cast_streaming_rtp_stream.idl
+++ b/chrome/common/extensions/api/cast_streaming_rtp_stream.idl
@@ -21,7 +21,7 @@ namespace cast.streaming.rtpStream {
// Synchronization source identifier.
long? ssrc;
- long? feedback_ssrc;
+ long? feedbackSsrc;
long? clockRate;
@@ -38,6 +38,12 @@ namespace cast.streaming.rtpStream {
// Video height in pixels.
long? height;
+ // 16 bytes AES key encoded in Base64.
+ DOMString? aesKey;
+
+ // 16 bytes AES IV (Initialization vector) mask encoded in Base64.
+ DOMString? aesIvMask;
+
// A list of codec specific params.
CodecSpecificParams[] codecSpecificParams;
};
« no previous file with comments | « no previous file | chrome/renderer/extensions/cast_streaming_native_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698