Chromium Code Reviews| Index: net/base/ssl_false_start_blacklist.h |
| =================================================================== |
| --- net/base/ssl_false_start_blacklist.h (revision 92224) |
| +++ net/base/ssl_false_start_blacklist.h (working copy) |
| @@ -14,11 +14,11 @@ |
| // to TLS False Start. Because this set is several hundred long, it's |
| // precompiled by the code in ssl_false_start_blacklist_process.cc into a hash |
| // table for fast lookups. |
| -class NET_TEST SSLFalseStartBlacklist { |
| +class SSLFalseStartBlacklist { |
|
darin (slow to review)
2011/07/12 22:25:31
This change was required for the ssl_false_start_b
|
| public: |
| // IsMember returns true if the given host is in the blacklist. |
| // host: a DNS name in dotted form (i.e. "www.example.com") |
| - static bool IsMember(const char* host); |
| + NET_TEST static bool IsMember(const char* host); |
| // Hash returns the modified djb2 hash of the given string. |
| static unsigned Hash(const char* str) { |