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

Side by Side Diff: net/ssl/ssl_client_auth_cache.h

Issue 623213004: replace OVERRIDE and FINAL with override and final in net/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: undo unwanted change in comment Created 6 years, 2 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 unified diff | Download patch
« no previous file with comments | « net/ssl/default_channel_id_store_unittest.cc ('k') | net/ssl/ssl_config_service_defaults.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef NET_SSL_SSL_CLIENT_AUTH_CACHE_H_ 5 #ifndef NET_SSL_SSL_CLIENT_AUTH_CACHE_H_
6 #define NET_SSL_SSL_CLIENT_AUTH_CACHE_H_ 6 #define NET_SSL_SSL_CLIENT_AUTH_CACHE_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 10
(...skipping 30 matching lines...) Expand all
41 // Add a client certificate for |server| to the cache. If there is already 41 // Add a client certificate for |server| to the cache. If there is already
42 // a client certificate for |server|, it will be overwritten. A NULL 42 // a client certificate for |server|, it will be overwritten. A NULL
43 // |client_cert| indicates a preference that no client certificate should 43 // |client_cert| indicates a preference that no client certificate should
44 // be sent to |server|. 44 // be sent to |server|.
45 void Add(const HostPortPair& server, X509Certificate* client_cert); 45 void Add(const HostPortPair& server, X509Certificate* client_cert);
46 46
47 // Remove the client certificate for |server| from the cache, if one exists. 47 // Remove the client certificate for |server| from the cache, if one exists.
48 void Remove(const HostPortPair& server); 48 void Remove(const HostPortPair& server);
49 49
50 // CertDatabase::Observer methods: 50 // CertDatabase::Observer methods:
51 virtual void OnCertAdded(const X509Certificate* cert) OVERRIDE; 51 virtual void OnCertAdded(const X509Certificate* cert) override;
52 52
53 private: 53 private:
54 typedef HostPortPair AuthCacheKey; 54 typedef HostPortPair AuthCacheKey;
55 typedef scoped_refptr<X509Certificate> AuthCacheValue; 55 typedef scoped_refptr<X509Certificate> AuthCacheValue;
56 typedef std::map<AuthCacheKey, AuthCacheValue> AuthCacheMap; 56 typedef std::map<AuthCacheKey, AuthCacheValue> AuthCacheMap;
57 57
58 // internal representation of cache, an STL map. 58 // internal representation of cache, an STL map.
59 AuthCacheMap cache_; 59 AuthCacheMap cache_;
60 }; 60 };
61 61
62 } // namespace net 62 } // namespace net
63 63
64 #endif // NET_SSL_SSL_CLIENT_AUTH_CACHE_H_ 64 #endif // NET_SSL_SSL_CLIENT_AUTH_CACHE_H_
OLDNEW
« no previous file with comments | « net/ssl/default_channel_id_store_unittest.cc ('k') | net/ssl/ssl_config_service_defaults.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698