Index: net/ssl/ssl_client_session_cache_impl.h |
diff --git a/net/ssl/ssl_client_session_cache_openssl.h b/net/ssl/ssl_client_session_cache_impl.h |
similarity index 86% |
rename from net/ssl/ssl_client_session_cache_openssl.h |
rename to net/ssl/ssl_client_session_cache_impl.h |
index a289e433c9714838253920a4b95bd6bd6c2639db..74014ebcc2dd2c2890ea78d6202ebdb614bbb3c8 100644 |
--- a/net/ssl/ssl_client_session_cache_openssl.h |
+++ b/net/ssl/ssl_client_session_cache_impl.h |
@@ -2,8 +2,8 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
-#ifndef NET_SSL_SSL_CLIENT_SESSION_CACHE_OPENSSL_H |
-#define NET_SSL_SSL_CLIENT_SESSION_CACHE_OPENSSL_H |
+#ifndef NET_SSL_SSL_CLIENT_SESSION_CACHE_IMPL_H |
+#define NET_SSL_SSL_CLIENT_SESSION_CACHE_IMPL_H |
davidben
2016/04/25 16:14:19
I'd drop the "impl" altogether since we're not imp
svaldez
2016/04/25 20:26:35
Done.
|
#include <openssl/ssl.h> |
#include <stddef.h> |
@@ -25,7 +25,7 @@ class Clock; |
namespace net { |
-class NET_EXPORT SSLClientSessionCacheOpenSSL { |
+class NET_EXPORT SSLClientSessionCacheImpl { |
public: |
struct Config { |
// The maximum number of entries in the cache. |
@@ -36,8 +36,8 @@ class NET_EXPORT SSLClientSessionCacheOpenSSL { |
base::TimeDelta timeout = base::TimeDelta::FromHours(1); |
}; |
- explicit SSLClientSessionCacheOpenSSL(const Config& config); |
- ~SSLClientSessionCacheOpenSSL(); |
+ explicit SSLClientSessionCacheImpl(const Config& config); |
+ ~SSLClientSessionCacheImpl(); |
size_t size() const; |
@@ -84,9 +84,9 @@ class NET_EXPORT SSLClientSessionCacheOpenSSL { |
// classes in net. |
base::Lock lock_; |
- DISALLOW_COPY_AND_ASSIGN(SSLClientSessionCacheOpenSSL); |
+ DISALLOW_COPY_AND_ASSIGN(SSLClientSessionCacheImpl); |
}; |
} // namespace net |
-#endif // NET_SSL_SSL_CLIENT_SESSION_CACHE_OPENSSL_H |
+#endif // NET_SSL_SSL_CLIENT_SESSION_CACHE_IMPL_H |