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

Unified Diff: remoting/protocol/jingle_session.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/host/simple_host_process.cc ('k') | remoting/protocol/jingle_session.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/jingle_session.h
===================================================================
--- remoting/protocol/jingle_session.h (revision 81350)
+++ remoting/protocol/jingle_session.h (working copy)
@@ -5,8 +5,8 @@
#ifndef REMOTING_PROTOCOL_JINGLE_SESSION_H_
#define REMOTING_PROTOCOL_JINGLE_SESSION_H_
-#include "base/crypto/rsa_private_key.h"
#include "base/memory/ref_counted.h"
+#include "crypto/rsa_private_key.h"
#include "net/base/completion_callback.h"
#include "remoting/protocol/session.h"
#include "third_party/libjingle/source/talk/base/sigslot.h"
@@ -53,7 +53,7 @@
static JingleSession* CreateServerSession(
JingleSessionManager* manager,
scoped_refptr<net::X509Certificate> certificate,
- base::RSAPrivateKey* key);
+ crypto::RSAPrivateKey* key);
// Chromotocol Session interface.
virtual void SetStateChangeCallback(StateChangeCallback* callback);
@@ -86,7 +86,7 @@
JingleSession(JingleSessionManager* client,
scoped_refptr<net::X509Certificate> server_cert,
- base::RSAPrivateKey* key);
+ crypto::RSAPrivateKey* key);
virtual ~JingleSession();
// Called by JingleSessionManager.
@@ -129,7 +129,7 @@
scoped_refptr<net::X509Certificate> server_cert_;
// Private key used in SSL server sockets.
- scoped_ptr<base::RSAPrivateKey> key_;
+ scoped_ptr<crypto::RSAPrivateKey> key_;
State state_;
scoped_ptr<StateChangeCallback> state_change_callback_;
« no previous file with comments | « remoting/host/simple_host_process.cc ('k') | remoting/protocol/jingle_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698