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

Unified Diff: chrome/browser/io_thread.cc

Issue 303253003: QUIC - persist server config in stable and beta channels. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/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
diff --git a/chrome/browser/io_thread.cc b/chrome/browser/io_thread.cc
index 6893de8ce4dbc79f20e8766781c2043ddf600e04..64f64b6ba47de99177f4c9db7b8e6492fec0fabb 100644
--- a/chrome/browser/io_thread.cc
+++ b/chrome/browser/io_thread.cc
@@ -1146,16 +1146,9 @@ bool IOThread::ShouldEnableQuicTimeBasedLossDetection(
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