Chromium Code Reviews| Index: chrome/browser/io_thread.cc |
| diff --git a/chrome/browser/io_thread.cc b/chrome/browser/io_thread.cc |
| index 9ef53eeac4556f6865d2b244199b8d94a453161e..7e649cb7b8d09e5b1ff5c3d3a9d5718e78dc492d 100644 |
| --- a/chrome/browser/io_thread.cc |
| +++ b/chrome/browser/io_thread.cc |
| @@ -1226,7 +1226,9 @@ bool IOThread::ShouldEnableQuic(const base::CommandLine& command_line, |
| return true; |
| return quic_trial_group.starts_with(kQuicFieldTrialEnabledGroupName) || |
| - quic_trial_group.starts_with(kQuicFieldTrialHttpsEnabledGroupName); |
| + quic_trial_group.starts_with(kQuicFieldTrialHttpsEnabledGroupName) || |
| + base::FieldTrialList::FindFullName( |
| + "DataReductionProxyUseQUICAsPrimaryOrigin") == "Enabled"; |
|
Ryan Hamilton
2015/02/06 22:23:52
Ah, I see. Hm, I'm not super in love this this. Th
|
| } |
| bool IOThread::ShouldEnableQuicPortSelection( |