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

Unified Diff: chrome/browser/io_thread.cc

Issue 316723003: Merge 274112 "QUIC - persist server config in stable and beta ch..." (Closed) Base URL: svn://svn.chromium.org/chrome/branches/1985/src/
Patch Set: Created 6 years, 7 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/io_thread.cc
===================================================================
--- chrome/browser/io_thread.cc (revision 274651)
+++ chrome/browser/io_thread.cc (working copy)
@@ -1163,16 +1163,9 @@
kQuicFieldTrialTimeBasedLossDetectionSuffix);
}
+// TODO(rtenneti): Delete this method after the merge.
bool IOThread::ShouldEnableQuicPersistServerInfo(
const CommandLine& command_line) {
- chrome::VersionInfo::Channel channel = chrome::VersionInfo::GetChannel();
- // Avoid persisting of Quic server config information to disk cache when we
- // have a beta or stable release. Allow in all other cases, including when we
- // do a developer build (CHANNEL_UNKNOWN).
- if (channel == chrome::VersionInfo::CHANNEL_STABLE ||
- channel == chrome::VersionInfo::CHANNEL_BETA) {
- return false;
- }
return true;
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698