summaryrefslogtreecommitdiffstats
path: root/remoting
diff options
context:
space:
mode:
authorwez@chromium.org <wez@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-30 23:32:27 +0000
committerwez@chromium.org <wez@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-30 23:32:27 +0000
commit9cc74d7ea7fa53dba7a6a096bb3cc8b6599c8c05 (patch)
tree53e2bd87dbfe0651730098f7723881ffbee454f9 /remoting
parentdb20381a7355809b2b243dc740862d0b597bf555 (diff)
downloadchromium_src-9cc74d7ea7fa53dba7a6a096bb3cc8b6599c8c05.zip
chromium_src-9cc74d7ea7fa53dba7a6a096bb3cc8b6599c8c05.tar.gz
chromium_src-9cc74d7ea7fa53dba7a6a096bb3cc8b6599c8c05.tar.bz2
Clean up some indentation and explicits that got missed in code review.
Review URL: http://codereview.chromium.org/8741028 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112331 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting')
-rw-r--r--remoting/protocol/v1_authenticator.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/remoting/protocol/v1_authenticator.h b/remoting/protocol/v1_authenticator.h
index d53c5bf..b6fffd7 100644
--- a/remoting/protocol/v1_authenticator.h
+++ b/remoting/protocol/v1_authenticator.h
@@ -19,8 +19,8 @@ namespace protocol {
class V1ClientAuthenticator : public Authenticator {
public:
- explicit V1ClientAuthenticator(const std::string& local_jid,
- const std::string& shared_secret);
+ V1ClientAuthenticator(const std::string& local_jid,
+ const std::string& shared_secret);
virtual ~V1ClientAuthenticator();
// Authenticator interface.
@@ -40,10 +40,11 @@ class V1ClientAuthenticator : public Authenticator {
class V1HostAuthenticator : public Authenticator {
public:
- explicit V1HostAuthenticator(const std::string& local_cert,
- crypto::RSAPrivateKey* local_private_key,
- const std::string& shared_secret,
- const std::string& remote_jid);
+ // Doesn't take ownership of |local_private_key|.
+ V1HostAuthenticator(const std::string& local_cert,
+ crypto::RSAPrivateKey* local_private_key,
+ const std::string& shared_secret,
+ const std::string& remote_jid);
virtual ~V1HostAuthenticator();
// Authenticator interface.
@@ -66,8 +67,8 @@ class V1HostAuthenticatorFactory : public AuthenticatorFactory {
public:
// Doesn't take ownership of |local_private_key|.
V1HostAuthenticatorFactory(const std::string& local_cert,
- crypto::RSAPrivateKey* local_private_key,
- const std::string& shared_secret);
+ crypto::RSAPrivateKey* local_private_key,
+ const std::string& shared_secret);
virtual ~V1HostAuthenticatorFactory();
// AuthenticatorFactory interface.