| Index: chrome/browser/media/encrypted_media_message_filter_android.cc
|
| diff --git a/chrome/browser/media/encrypted_media_message_filter_android.cc b/chrome/browser/media/encrypted_media_message_filter_android.cc
|
| index 968f9b9f301ca1d976c961b9d30fed94ccc7a260..13b55c685bdcebeae574b59748d23d104764477b 100644
|
| --- a/chrome/browser/media/encrypted_media_message_filter_android.cc
|
| +++ b/chrome/browser/media/encrypted_media_message_filter_android.cc
|
| @@ -16,6 +16,11 @@ using media::MediaCodecBridge;
|
| using media::MediaDrmBridge;
|
|
|
| namespace chrome {
|
| +namespace {
|
| +const uint32 kFilteredMessageClasses[] = {
|
| + EncryptedMediaMsgStart,
|
| +};
|
| +} // namespace
|
|
|
| // Check whether the available codecs are supported.
|
| static android::SupportedCodecs GetSupportedCodecs(
|
| @@ -45,7 +50,9 @@ static android::SupportedCodecs GetSupportedCodecs(
|
| return supported_codecs;
|
| }
|
|
|
| -EncryptedMediaMessageFilterAndroid::EncryptedMediaMessageFilterAndroid() {}
|
| +EncryptedMediaMessageFilterAndroid::EncryptedMediaMessageFilterAndroid()
|
| + : BrowserMessageFilter(
|
| + kFilteredMessageClasses, arraysize(kFilteredMessageClasses)) {}
|
|
|
| EncryptedMediaMessageFilterAndroid::~EncryptedMediaMessageFilterAndroid() {}
|
|
|
|
|