summaryrefslogtreecommitdiffstats
path: root/remoting/host/host_key_pair.h
diff options
context:
space:
mode:
Diffstat (limited to 'remoting/host/host_key_pair.h')
-rw-r--r--remoting/host/host_key_pair.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/remoting/host/host_key_pair.h b/remoting/host/host_key_pair.h
index c1f6082..32a15d0 100644
--- a/remoting/host/host_key_pair.h
+++ b/remoting/host/host_key_pair.h
@@ -15,10 +15,6 @@ namespace crypto {
class RSAPrivateKey;
} // namespace base
-namespace net {
-class X509Certificate;
-} // namespace net
-
namespace remoting {
class HostConfig;
@@ -39,7 +35,7 @@ class HostKeyPair {
// Make a new copy of private key. Caller will own the generated private key.
crypto::RSAPrivateKey* CopyPrivateKey() const;
- net::X509Certificate* GenerateCertificate() const;
+ std::string GenerateCertificate() const;
private:
scoped_ptr<crypto::RSAPrivateKey> key_;