diff options
author | clm <clm@google.com> | 2014-09-17 19:06:25 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-09-18 02:06:45 +0000 |
commit | bf34c549e44d8ec4ec416f824b6df7131ec78305 (patch) | |
tree | 8fd4267a6ad14cd8ca6e99245f4cb550eac7f762 /components/cronet/android/url_request_context_adapter.cc | |
parent | 5db51cce7b370e2e9d9f14cbd2cc9ea1e968948a (diff) | |
download | chromium_src-bf34c549e44d8ec4ec416f824b6df7131ec78305.zip chromium_src-bf34c549e44d8ec4ec416f824b6df7131ec78305.tar.gz chromium_src-bf34c549e44d8ec4ec416f824b6df7131ec78305.tar.bz2 |
Changing quic threshold to 0.0
BUG=
Review URL: https://codereview.chromium.org/575163003
Cr-Commit-Position: refs/heads/master@{#295396}
Diffstat (limited to 'components/cronet/android/url_request_context_adapter.cc')
-rw-r--r-- | components/cronet/android/url_request_context_adapter.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/cronet/android/url_request_context_adapter.cc b/components/cronet/android/url_request_context_adapter.cc index 00e463e..7c99244 100644 --- a/components/cronet/android/url_request_context_adapter.cc +++ b/components/cronet/android/url_request_context_adapter.cc @@ -147,7 +147,7 @@ void URLRequestContextAdapter::InitializeURLRequestContext( // Currently (circa M39) enabling QUIC requires setting probability threshold. if (config->enable_quic) { context_->http_server_properties() - ->SetAlternateProtocolProbabilityThreshold(1.0f); + ->SetAlternateProtocolProbabilityThreshold(0.0f); for (size_t hint = 0; hint < config->quic_hints.size(); ++hint) { const URLRequestContextConfig::QuicHint& quic_hint = *config->quic_hints[hint]; |