summaryrefslogtreecommitdiffstats
path: root/remoting
diff options
context:
space:
mode:
authorajose <ajose@chromium.org>2015-07-28 16:42:27 -0700
committerCommit bot <commit-bot@chromium.org>2015-07-28 23:43:09 +0000
commit1e515a6cb6dea7df8a92dd51fe5bd55759ec34ca (patch)
tree291a1ac4618af3f36025b67fd1a049326a4ab89a /remoting
parentd937879ed54975426f3c5c9e5b1366847e7b85fa (diff)
downloadchromium_src-1e515a6cb6dea7df8a92dd51fe5bd55759ec34ca.zip
chromium_src-1e515a6cb6dea7df8a92dd51fe5bd55759ec34ca.tar.gz
chromium_src-1e515a6cb6dea7df8a92dd51fe5bd55759ec34ca.tar.bz2
Make use of '// static' consistent.
Review URL: https://codereview.chromium.org/1211973011 Cr-Commit-Position: refs/heads/master@{#340807}
Diffstat (limited to 'remoting')
-rw-r--r--remoting/base/rsa_key_pair.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/remoting/base/rsa_key_pair.cc b/remoting/base/rsa_key_pair.cc
index a8ca5d0..366d93d 100644
--- a/remoting/base/rsa_key_pair.cc
+++ b/remoting/base/rsa_key_pair.cc
@@ -25,7 +25,7 @@ RsaKeyPair::RsaKeyPair(scoped_ptr<crypto::RSAPrivateKey> key)
RsaKeyPair::~RsaKeyPair() {}
-//static
+// static
scoped_refptr<RsaKeyPair> RsaKeyPair::Generate() {
scoped_ptr<crypto::RSAPrivateKey> key(crypto::RSAPrivateKey::Create(2048));
if (!key) {
@@ -35,7 +35,7 @@ scoped_refptr<RsaKeyPair> RsaKeyPair::Generate() {
return new RsaKeyPair(key.Pass());
}
-//static
+// static
scoped_refptr<RsaKeyPair> RsaKeyPair::FromString(
const std::string& key_base64) {
std::string key_str;