Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(306)

Unified Diff: remoting/host/host_key_pair.h

Issue 6805019: Move crypto files out of base, to a top level directory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Fixes comments by eroman Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/DEPS ('k') | remoting/host/host_key_pair.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/host_key_pair.h
===================================================================
--- remoting/host/host_key_pair.h (revision 81350)
+++ remoting/host/host_key_pair.h (working copy)
@@ -11,7 +11,7 @@
#include "base/memory/scoped_ptr.h"
#include "base/task.h"
-namespace base {
+namespace crypto {
class RSAPrivateKey;
} // namespace base
@@ -38,11 +38,11 @@
std::string GetSignature(const std::string& message) const;
// Make a new copy of private key. Caller will own the generated private key.
- base::RSAPrivateKey* CopyPrivateKey() const;
+ crypto::RSAPrivateKey* CopyPrivateKey() const;
net::X509Certificate* GenerateCertificate() const;
private:
- scoped_ptr<base::RSAPrivateKey> key_;
+ scoped_ptr<crypto::RSAPrivateKey> key_;
};
} // namespace remoting
« no previous file with comments | « remoting/DEPS ('k') | remoting/host/host_key_pair.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698