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 8c0c4da6c331cf74ca4f2965be98cbaad6f63844..bdedf61dacd57f97a23bd3dee2c94e8986ba8b45 100644 |
--- a/chrome/browser/ui/media_stream_infobar_delegate.cc |
+++ b/chrome/browser/ui/media_stream_infobar_delegate.cc |
@@ -38,8 +38,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(const std::string& audio_id, |