| Index: webrtc/base/fakesslidentity.h | 
| diff --git a/webrtc/base/fakesslidentity.h b/webrtc/base/fakesslidentity.h | 
| index 6640b029c9b0aa01b768b13502302539a726339d..9f98c4e5509c2b880940d8de56da3c177f661b0e 100644 | 
| --- a/webrtc/base/fakesslidentity.h | 
| +++ b/webrtc/base/fakesslidentity.h | 
| @@ -99,6 +99,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_; | 
| }; | 
|  |