| Index: chrome/browser/ui/browser.cc
|
| diff --git a/chrome/browser/ui/browser.cc b/chrome/browser/ui/browser.cc
|
| index 95b39dd89bff2fcb8ccd82de6793ca296a74289b..b1f22420b9db03778c5d795c65b4db001514ce9d 100644
|
| --- a/chrome/browser/ui/browser.cc
|
| +++ b/chrome/browser/ui/browser.cc
|
| @@ -1761,6 +1761,12 @@ void Browser::RequestMediaAccessPermission(
|
| ::RequestMediaAccessPermission(web_contents, profile_, request, callback);
|
| }
|
|
|
| +bool Browser::CheckMediaAccessPermission(content::WebContents* web_contents,
|
| + const GURL& security_origin,
|
| + content::MediaStreamType type) {
|
| + return ::CheckMediaAccessPermission(web_contents, security_origin, type);
|
| +}
|
| +
|
| bool Browser::RequestPpapiBrokerPermission(
|
| WebContents* web_contents,
|
| const GURL& url,
|
|
|