| Index: chrome/browser/ui/media_stream_infobar_delegate.cc
|
| diff --git a/chrome/browser/ui/media_stream_infobar_delegate.cc b/chrome/browser/ui/media_stream_infobar_delegate.cc
|
| index 0e71b34a81920f9e427bfbbf6fedd5332b28840e..ae0ccf0b1a1b93ec1d3e7c533e654083a7d77154 100644
|
| --- a/chrome/browser/ui/media_stream_infobar_delegate.cc
|
| +++ b/chrome/browser/ui/media_stream_infobar_delegate.cc
|
| @@ -46,8 +46,16 @@ content::MediaStreamDevices
|
| return controller_->GetVideoDevices();
|
| }
|
|
|
| -const GURL& MediaStreamInfoBarDelegate::GetSecurityOrigin() const {
|
| - return controller_->GetSecurityOrigin();
|
| +const std::string& MediaStreamInfoBarDelegate::GetSecurityOriginSpec() const {
|
| + return controller_->GetSecurityOriginSpec();
|
| +}
|
| +
|
| +bool MediaStreamInfoBarDelegate::IsSafeToAlwaysAllowAudio() const {
|
| + return controller_->IsSafeToAlwaysAllowAudio();
|
| +}
|
| +
|
| +bool MediaStreamInfoBarDelegate::IsSafeToAlwaysAllowVideo() const {
|
| + return controller_->IsSafeToAlwaysAllowVideo();
|
| }
|
|
|
| void MediaStreamInfoBarDelegate::Accept() {
|
|
|