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 { |
+ // Not implemented. |
+ RTC_NOTREACHED(); |
+ return ""; |
+ } |
private: |
FakeSSLCertificate cert_; |
}; |