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

Unified Diff: chrome/common/encrypted_media_messages_android.h

Issue 185993004: Encrypted Media: Confine UUID code to MediaDrmBridge. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: updated tests Created 6 years, 10 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: chrome/common/encrypted_media_messages_android.h
diff --git a/chrome/common/encrypted_media_messages_android.h b/chrome/common/encrypted_media_messages_android.h
index 00a77d05730b58c43339c2e71d762308b1a3bc83..7d7ea8c3380f470fe79d66f7c8eec489b42b0211 100644
--- a/chrome/common/encrypted_media_messages_android.h
+++ b/chrome/common/encrypted_media_messages_android.h
@@ -34,13 +34,13 @@ enum SupportedCodecs {
IPC_ENUM_TRAITS(android::SupportedCodecs)
IPC_STRUCT_BEGIN(SupportedKeySystemRequest)
- IPC_STRUCT_MEMBER(std::vector<uint8>, uuid)
+ IPC_STRUCT_MEMBER(std::string, key_system)
IPC_STRUCT_MEMBER(android::SupportedCodecs, codecs,
android::NO_SUPPORTED_CODECS)
IPC_STRUCT_END()
IPC_STRUCT_BEGIN(SupportedKeySystemResponse)
- IPC_STRUCT_MEMBER(std::vector<uint8>, uuid)
+ IPC_STRUCT_MEMBER(std::string, key_system)
IPC_STRUCT_MEMBER(android::SupportedCodecs, compositing_codecs,
android::NO_SUPPORTED_CODECS)
IPC_STRUCT_MEMBER(android::SupportedCodecs, non_compositing_codecs,

Powered by Google App Engine
This is Rietveld 408576698