| Index: webrtc/base/sslidentity.cc
|
| diff --git a/webrtc/base/sslidentity.cc b/webrtc/base/sslidentity.cc
|
| index 5f6b6869dd4db39cea25207532b41f6739255864..536e3aa7dc46726273cc16d598296a6ec8172d74 100644
|
| --- a/webrtc/base/sslidentity.cc
|
| +++ b/webrtc/base/sslidentity.cc
|
| @@ -159,8 +159,10 @@ SSLCertificate* SSLCertificate::FromPEMString(const std::string& pem_string) {
|
| }
|
|
|
| SSLIdentity* SSLIdentity::Generate(const std::string& common_name,
|
| - const KeyParams& key_params) {
|
| - return OpenSSLIdentity::Generate(common_name, key_params);
|
| + const KeyParams& key_params,
|
| + time_t certificate_lifetime) {
|
| + return OpenSSLIdentity::Generate(common_name, key_params,
|
| + certificate_lifetime);
|
| }
|
|
|
| SSLIdentity* SSLIdentity::GenerateForTest(const SSLIdentityParams& params) {
|
|
|