Chromium Code Reviews| Index: content/renderer/media/rtc_certificate.cc |
| diff --git a/content/renderer/media/rtc_certificate.cc b/content/renderer/media/rtc_certificate.cc |
| index 7c2ff28923800490b00dad62bb6bdbc92c3fc423..dd92060afd6264757ad5b300439985db92ee4e0a 100644 |
| --- a/content/renderer/media/rtc_certificate.cc |
| +++ b/content/renderer/media/rtc_certificate.cc |
| @@ -32,6 +32,11 @@ uint64_t RTCCertificate::expires() const { |
| return certificate_->Expires(); |
| } |
| +bool RTCCertificate::equals(const blink::WebRTCCertificate& other) const { |
| + return *this->certificate_ == |
|
tommi (sloooow) - chröme
2016/04/29 12:50:51
remove "this->"
hbos_chromium
2016/04/29 13:05:20
Done.
|
| + *static_cast<const RTCCertificate&>(other).certificate_; |
| +} |
| + |
| const rtc::scoped_refptr<rtc::RTCCertificate>& |
| RTCCertificate::rtcCertificate() const { |
| return certificate_; |