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

Unified Diff: net/base/ssl_client_auth_cache.h

Issue 3522004: FBTF: Move ctors/dtors into implementation files. Adds ctors/dtors to non-POD structs. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Created 10 years, 3 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
Index: net/base/ssl_client_auth_cache.h
diff --git a/net/base/ssl_client_auth_cache.h b/net/base/ssl_client_auth_cache.h
index 3c8ed994b5251e04539a4bb42b8d9d021c93d680..023480b2915c562872a568df88ae798324c15d4c 100644
--- a/net/base/ssl_client_auth_cache.h
+++ b/net/base/ssl_client_auth_cache.h
@@ -23,8 +23,8 @@ namespace net {
// code to a template class.
class SSLClientAuthCache {
public:
- SSLClientAuthCache() {}
- ~SSLClientAuthCache() {}
+ SSLClientAuthCache();
+ ~SSLClientAuthCache();
// Check if we have a client certificate for SSL server at |server|.
// Returns the client certificate (if found) or NULL (if not found).

Powered by Google App Engine
This is Rietveld 408576698