Index: chrome/installer/util/master_preferences.cc |
diff --git a/chrome/installer/util/master_preferences.cc b/chrome/installer/util/master_preferences.cc |
index cc5c1a56d554db0f622c18d843d84b2b0e1d5ebc..6e3daf6c6742a2046b62caacc9c32cf24cef92a4 100644 |
--- a/chrome/installer/util/master_preferences.cc |
+++ b/chrome/installer/util/master_preferences.cc |
@@ -249,19 +249,6 @@ void MasterPreferences::EnforceLegacyPreferences() { |
distribution_->SetBoolean( |
installer::master_preferences::kDoNotCreateQuickLaunchShortcut, true); |
} |
- |
- // If there is no entry for kURLsToRestoreOnStartup and there is one for |
- // kURLsToRestoreOnStartupOld, copy the old to the new. |
- const base::ListValue* startup_urls_list = NULL; |
- if (master_dictionary_ && |
- !master_dictionary_->GetList(prefs::kURLsToRestoreOnStartup, NULL) && |
- master_dictionary_->GetList(prefs::kURLsToRestoreOnStartupOld, |
- &startup_urls_list) && |
- startup_urls_list) { |
- base::ListValue* new_startup_urls_list = startup_urls_list->DeepCopy(); |
- master_dictionary_->Set(prefs::kURLsToRestoreOnStartup, |
- new_startup_urls_list); |
- } |
} |
bool MasterPreferences::GetBool(const std::string& name, bool* value) const { |