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

Unified Diff: remoting/protocol/v1_authenticator.h

Issue 8741028: Clean up some indentation and explicits that got missed in code review. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/protocol/v1_authenticator.h
diff --git a/remoting/protocol/v1_authenticator.h b/remoting/protocol/v1_authenticator.h
index d53c5bfd90e1bda2f2e8bbb549c707f28394edbd..b6fffd7f3701c36ee03826f9b08cae067d55dfd2 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.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698