Index: webrtc/base/fakesslidentity.h |
diff --git a/webrtc/base/fakesslidentity.h b/webrtc/base/fakesslidentity.h |
index 47ff86d03a827ebdf3a9a72f0bb6bf65ae278609..c5e61e7ca358772cc06f2376d76ca024d864b7be 100644 |
--- a/webrtc/base/fakesslidentity.h |
+++ b/webrtc/base/fakesslidentity.h |
@@ -98,6 +98,18 @@ class FakeSSLIdentity : public rtc::SSLIdentity { |
return new FakeSSLIdentity(*this); |
} |
virtual const FakeSSLCertificate& certificate() const { return cert_; } |
+ virtual std::string PrivateKeyToPEMString() const { |
+ RTC_NOTREACHED(); // Not implemented. |
+ return ""; |
+ } |
+ virtual std::string PublicKeyToPEMString() const { |
+ RTC_NOTREACHED(); // Not implemented. |
+ return ""; |
+ } |
+ virtual bool operator==(const SSLIdentity& other) const { |
+ RTC_NOTREACHED(); // Not implemented. |
+ return false; |
+ } |
private: |
FakeSSLCertificate cert_; |
}; |