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

Unified Diff: net/base/ssl_config_service.cc

Issue 10014010: net: False Start only for NPN capable servers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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_config_service.cc
diff --git a/net/base/ssl_config_service.cc b/net/base/ssl_config_service.cc
index 16720bde2400d1a4826768c8a16db26c16f0b952..f8f77fbca584700e69c26bf13a4f3b24f6c1ba58 100644
--- a/net/base/ssl_config_service.cc
+++ b/net/base/ssl_config_service.cc
@@ -9,7 +9,6 @@
#include "base/synchronization/lock.h"
#include "net/base/crl_set.h"
#include "net/base/ssl_config_service_defaults.h"
-#include "net/base/ssl_false_start_blacklist.h"
namespace net {
@@ -57,12 +56,6 @@ SSLConfigService::SSLConfigService()
: observer_list_(ObserverList<Observer>::NOTIFY_EXISTING_ONLY) {
}
-// static
-bool SSLConfigService::IsKnownFalseStartIncompatibleServer(
- const std::string& hostname) {
- return SSLFalseStartBlacklist::IsMember(hostname);
-}
-
static bool g_cached_info_enabled = false;
// GlobalCRLSet holds a reference to the global CRLSet. It simply wraps a lock

Powered by Google App Engine
This is Rietveld 408576698