| Index: chrome/common/chrome_content_client.cc
|
| diff --git a/chrome/common/chrome_content_client.cc b/chrome/common/chrome_content_client.cc
|
| index da7d5321cb36585b5711b3152993c9a53982665d..fb1b7585e938c6f244a148a798add730b078e62e 100644
|
| --- a/chrome/common/chrome_content_client.cc
|
| +++ b/chrome/common/chrome_content_client.cc
|
| @@ -79,6 +79,10 @@
|
| #include "chrome/common/widevine_cdm_constants.h"
|
| #endif
|
|
|
| +#if defined(OS_ANDROID)
|
| +#include "chrome/common/chrome_media_client_android.h"
|
| +#endif
|
| +
|
| namespace {
|
|
|
| #if defined(ENABLE_PLUGINS)
|
| @@ -687,3 +691,9 @@ bool ChromeContentClient::IsSupplementarySiteIsolationModeEnabled() {
|
| base::StringPiece ChromeContentClient::GetOriginTrialPublicKey() {
|
| return origin_trial_key_manager_.GetPublicKey();
|
| }
|
| +
|
| +#if defined(OS_ANDROID)
|
| +media::MediaClientAndroid* ChromeContentClient::GetMediaClientAndroid() {
|
| + return new ChromeMediaClientAndroid();
|
| +}
|
| +#endif // OS_ANDROID
|
|
|