Chromium Code Reviews| Index: content/browser/frame_host/render_frame_host_delegate.cc |
| diff --git a/content/browser/frame_host/render_frame_host_delegate.cc b/content/browser/frame_host/render_frame_host_delegate.cc |
| index f5d07e35d4307815332b5d549e777fa5edd685c1..57b4fa8026ba11192162f827b8648ad1766cfb0d 100644 |
| --- a/content/browser/frame_host/render_frame_host_delegate.cc |
| +++ b/content/browser/frame_host/render_frame_host_delegate.cc |
| @@ -44,6 +44,14 @@ void RenderFrameHostDelegate::RequestMediaAccessPermission( |
| scoped_ptr<MediaStreamUI>()); |
| } |
| +bool RenderFrameHostDelegate::CheckMediaAccessPermission( |
| + const GURL& security_origin, |
| + MediaStreamType type) { |
| + DCHECK(type == MEDIA_DEVICE_AUDIO_CAPTURE || |
|
perkj_chrome
2014/09/15 12:06:25
NOTREACHED()?
Henrik Grunell
2014/09/15 13:45:17
I don't think we should force implementors to impl
|
| + type == MEDIA_DEVICE_VIDEO_CAPTURE); |
| + return false; |
| +} |
| + |
| AccessibilityMode RenderFrameHostDelegate::GetAccessibilityMode() const { |
| return AccessibilityModeOff; |
| } |