| Index: content/public/test/mock_render_process_host.cc
|
| diff --git a/content/public/test/mock_render_process_host.cc b/content/public/test/mock_render_process_host.cc
|
| index e0f9d019f97b9eab6a1c4573012daf738ce07025..aef164f69659570616a0b7936c7f4885339e92de 100644
|
| --- a/content/public/test/mock_render_process_host.cc
|
| +++ b/content/public/test/mock_render_process_host.cc
|
| @@ -27,6 +27,10 @@
|
| #include "content/public/browser/render_widget_host_iterator.h"
|
| #include "content/public/browser/storage_partition.h"
|
|
|
| +#if defined(ENABLE_BROWSER_CDMS)
|
| +#include "media/base/media_keys.h"
|
| +#endif
|
| +
|
| namespace content {
|
|
|
| MockRenderProcessHost::MockRenderProcessHost(BrowserContext* browser_context)
|
| @@ -282,8 +286,9 @@ void MockRenderProcessHost::SendUpdateValueState(
|
| }
|
|
|
| #if defined(ENABLE_BROWSER_CDMS)
|
| -media::BrowserCdm* MockRenderProcessHost::GetBrowserCdm(int render_frame_id,
|
| - int cdm_id) const {
|
| +scoped_refptr<media::MediaKeys> MockRenderProcessHost::GetCdm(
|
| + int render_frame_id,
|
| + int cdm_id) const {
|
| return nullptr;
|
| }
|
| #endif
|
|
|