Index: chrome/browser/ui/apps/chrome_app_delegate.cc |
diff --git a/chrome/browser/ui/apps/chrome_app_delegate.cc b/chrome/browser/ui/apps/chrome_app_delegate.cc |
index 2cf0588a9e8e000aab4deada86947417c5984622..d1462500133bafc4321b293f1c85c0c2662ca6ec 100644 |
--- a/chrome/browser/ui/apps/chrome_app_delegate.cc |
+++ b/chrome/browser/ui/apps/chrome_app_delegate.cc |
@@ -245,6 +245,16 @@ void ChromeAppDelegate::RequestMediaAccessPermission( |
web_contents, request, callback, extension); |
} |
+bool ChromeAppDelegate::CheckMediaAccessPermission( |
+ content::WebContents* web_contents, |
+ const GURL& security_origin, |
+ content::MediaStreamType type, |
+ const extensions::Extension* extension) { |
+ return MediaCaptureDevicesDispatcher::GetInstance() |
+ ->CheckMediaAccessPermission( |
+ web_contents, security_origin, type, extension); |
+} |
+ |
int ChromeAppDelegate::PreferredIconSize() { |
#if defined(USE_ASH) |
return ash::kShelfSize; |