Index: webrtc/base/fakesslidentity.h |
diff --git a/webrtc/base/fakesslidentity.h b/webrtc/base/fakesslidentity.h |
index 47ff86d03a827ebdf3a9a72f0bb6bf65ae278609..1960efbd664530e7277977097e68ee444a1ba95f 100644 |
--- a/webrtc/base/fakesslidentity.h |
+++ b/webrtc/base/fakesslidentity.h |
@@ -98,6 +98,11 @@ class FakeSSLIdentity : public rtc::SSLIdentity { |
return new FakeSSLIdentity(*this); |
} |
virtual const FakeSSLCertificate& certificate() const { return cert_; } |
+ virtual std::string PrivateKeyToPemString() const { |
torbjorng (webrtc)
2016/04/21 15:16:00
Please use "override".
hbos
2016/04/22 13:19:29
This is a file where virtual is used everywhere. I
nisse-webrtc
2016/04/22 13:44:06
I think the inconsistent-override warning applies
hbos
2016/04/25 14:23:23
Acknowledged.
|
+ // Not implemented. |
+ RTC_NOTREACHED(); |
+ return ""; |
+ } |
private: |
FakeSSLCertificate cert_; |
}; |