Chromium Code Reviews| Index: media/base/android/media_player_android.cc |
| diff --git a/media/base/android/media_player_android.cc b/media/base/android/media_player_android.cc |
| index 158e520c54f5f11941e81df9bb261ab7c41418f6..2e86dafef9c2db4386d22ada2fa13dc1409ae631 100644 |
| --- a/media/base/android/media_player_android.cc |
| +++ b/media/base/android/media_player_android.cc |
| @@ -6,7 +6,6 @@ |
| #include "base/logging.h" |
| #include "media/base/android/media_player_manager.h" |
| -#include "media/base/media_keys.h" |
| namespace media { |
| @@ -31,14 +30,9 @@ GURL MediaPlayerAndroid::GetFirstPartyForCookies() { |
| return GURL(); |
| } |
| -void MediaPlayerAndroid::SetCdm(MediaKeys* cdm) { |
| +void MediaPlayerAndroid::SetCdm(BrowserCdm* /* cdm */) { |
| // Not all players support CDMs. Do nothing by default. |
|
ddorwin
2014/05/30 20:50:05
Shouldn't this either be impossible (DCHECK) or ca
xhwang
2014/06/02 20:11:43
Done.
|
| return; |
| } |
| -void MediaPlayerAndroid::OnKeyAdded() { |
| - // Not all players care about the decryption key. Do nothing by default. |
| - return; |
| -} |
| - |
| } // namespace media |