Index: chrome/browser/net/net_pref_observer.cc |
diff --git a/chrome/browser/net/net_pref_observer.cc b/chrome/browser/net/net_pref_observer.cc |
index 65665535c6721331f52ae3375442358d3b04a7ce..e77a779de1e4b051930e78aecc2c92647e477828 100644 |
--- a/chrome/browser/net/net_pref_observer.cc |
+++ b/chrome/browser/net/net_pref_observer.cc |
@@ -86,17 +86,4 @@ void NetPrefObserver::RegisterPrefs(PrefService* prefs) { |
prefs->RegisterBooleanPref(prefs::kHttpThrottlingEnabled, |
true, |
PrefService::UNSYNCABLE_PREF); |
- // TODO(joi): This pref really means "user has not explicitly turned |
- // anti-DDoS throttling on or off". Rename it soon (2011/8/26) or |
- // remove it altogether (more likely). |
- prefs->RegisterBooleanPref(prefs::kHttpThrottlingMayExperiment, |
- true, |
- PrefService::UNSYNCABLE_PREF); |
- |
- // For users who created their profile while throttling was off by |
- // default, but have never explicitly turned it on or off, we turn |
- // it on which is the new default. |
- if (prefs->GetBoolean(prefs::kHttpThrottlingMayExperiment)) { |
- prefs->SetBoolean(prefs::kHttpThrottlingEnabled, true); |
- } |
} |