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; |
} |