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

Unified Diff: components/cdm/common/cdm_messages_android.h

Issue 665343002: Move KeySystemInfo to media. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase only Created 6 years, 2 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
« no previous file with comments | « components/cdm/browser/cdm_message_filter_android.cc ('k') | components/cdm/renderer/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/cdm/common/cdm_messages_android.h
diff --git a/components/cdm/common/cdm_messages_android.h b/components/cdm/common/cdm_messages_android.h
index 8e0ad1cb4c3b08aea9aca46205d0b77acefcb7a8..028306ac35ba6047a9dbe027c8c3746fb92b9d2d 100644
--- a/components/cdm/common/cdm_messages_android.h
+++ b/components/cdm/common/cdm_messages_android.h
@@ -7,24 +7,24 @@
#include <vector>
-#include "content/public/common/eme_constants.h"
#include "ipc/ipc_message_macros.h"
+#include "media/base/eme_constants.h"
#define IPC_MESSAGE_START EncryptedMediaMsgStart
IPC_STRUCT_BEGIN(SupportedKeySystemRequest)
IPC_STRUCT_MEMBER(std::string, key_system)
- IPC_STRUCT_MEMBER(content::SupportedCodecs, codecs, content::EME_CODEC_NONE)
+ IPC_STRUCT_MEMBER(media::SupportedCodecs, codecs, media::EME_CODEC_NONE)
IPC_STRUCT_END()
IPC_STRUCT_BEGIN(SupportedKeySystemResponse)
IPC_STRUCT_MEMBER(std::string, key_system)
- IPC_STRUCT_MEMBER(content::SupportedCodecs,
+ IPC_STRUCT_MEMBER(media::SupportedCodecs,
compositing_codecs,
- content::EME_CODEC_NONE)
- IPC_STRUCT_MEMBER(content::SupportedCodecs,
+ media::EME_CODEC_NONE)
+ IPC_STRUCT_MEMBER(media::SupportedCodecs,
non_compositing_codecs,
- content::EME_CODEC_NONE)
+ media::EME_CODEC_NONE)
IPC_STRUCT_END()
// Messages sent from the renderer to the browser.
« no previous file with comments | « components/cdm/browser/cdm_message_filter_android.cc ('k') | components/cdm/renderer/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698