Index: net/ssl/ssl_config_service.h |
diff --git a/net/ssl/ssl_config_service.h b/net/ssl/ssl_config_service.h |
index 01c20cd610382cab4a5498ce335be1cf2b1b44a6..28266132c411bcf6c6f4888e07a4b77c1f6be36e 100644 |
--- a/net/ssl/ssl_config_service.h |
+++ b/net/ssl/ssl_config_service.h |
@@ -91,6 +91,13 @@ struct NET_EXPORT SSLConfig { |
bool channel_id_enabled; // True if TLS channel ID extension is enabled. |
bool false_start_enabled; // True if we'll use TLS False Start. |
+ // If |ssl3_fallback_enabled| is false and the request is sent to a site |
+ // pinned to the Google pin list (indicating that it is a Google site), |
+ // SSL 3.0 fallback will be disabled. |
+ // If |ssl3_fallback_enabled| is true, SSL 3.0 fallback will be enabled |
+ // for all sites. |
wtc
2013/04/18 18:15:34
I suggest describing the "true" case before the "f
|
+ bool ssl3_fallback_enabled; |
wtc
2013/04/18 18:15:34
NOTE: I still think this member name is confusing.
|
+ |
// TODO(wtc): move the following members to a new SSLParams structure. They |
// are not SSL configuration settings. |