| Index: webrtc/base/opensslidentity.h
|
| diff --git a/webrtc/base/opensslidentity.h b/webrtc/base/opensslidentity.h
|
| index d8ba138f625484fddca35a38ff3f449eeea86832..97e4886efcf6ce27bf941765e687f30e87795233 100644
|
| --- a/webrtc/base/opensslidentity.h
|
| +++ b/webrtc/base/opensslidentity.h
|
| @@ -32,7 +32,7 @@ class OpenSSLKeyPair {
|
| ASSERT(pkey_ != NULL);
|
| }
|
|
|
| - static OpenSSLKeyPair* Generate(KeyType key_type);
|
| + static OpenSSLKeyPair* Generate(KeyTypeFull key_type);
|
|
|
| virtual ~OpenSSLKeyPair();
|
|
|
| @@ -100,7 +100,7 @@ class OpenSSLCertificate : public SSLCertificate {
|
| class OpenSSLIdentity : public SSLIdentity {
|
| public:
|
| static OpenSSLIdentity* Generate(const std::string& common_name,
|
| - KeyType key_type);
|
| + KeyTypeFull key_type);
|
| static OpenSSLIdentity* GenerateForTest(const SSLIdentityParams& params);
|
| static SSLIdentity* FromPEMStrings(const std::string& private_key,
|
| const std::string& certificate);
|
|
|