| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ios/chrome/browser/prefs/browser_prefs.h" | 5 #include "ios/chrome/browser/prefs/browser_prefs.h" |
| 6 | 6 |
| 7 #include "components/autofill/core/browser/autofill_manager.h" | 7 #include "components/autofill/core/browser/autofill_manager.h" |
| 8 #include "components/browsing_data/core/pref_names.h" | 8 #include "components/browsing_data/core/pref_names.h" |
| 9 #include "components/content_settings/core/browser/host_content_settings_map.h" | 9 #include "components/content_settings/core/browser/host_content_settings_map.h" |
| 10 #include "components/dom_distiller/core/distilled_page_prefs.h" | 10 #include "components/dom_distiller/core/distilled_page_prefs.h" |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 #include "components/variations/service/variations_service.h" | 32 #include "components/variations/service/variations_service.h" |
| 33 #include "components/web_resource/web_resource_pref_names.h" | 33 #include "components/web_resource/web_resource_pref_names.h" |
| 34 #include "ios/chrome/browser/browser_state/browser_state_info_cache.h" | 34 #include "ios/chrome/browser/browser_state/browser_state_info_cache.h" |
| 35 #include "ios/chrome/browser/first_run/first_run.h" | 35 #include "ios/chrome/browser/first_run/first_run.h" |
| 36 #import "ios/chrome/browser/geolocation/omnibox_geolocation_local_state.h" | 36 #import "ios/chrome/browser/geolocation/omnibox_geolocation_local_state.h" |
| 37 #import "ios/chrome/browser/memory/memory_debugger_manager.h" | 37 #import "ios/chrome/browser/memory/memory_debugger_manager.h" |
| 38 #import "ios/chrome/browser/metrics/ios_chrome_metrics_service_client.h" | 38 #import "ios/chrome/browser/metrics/ios_chrome_metrics_service_client.h" |
| 39 #include "ios/chrome/browser/net/http_server_properties_manager_factory.h" | 39 #include "ios/chrome/browser/net/http_server_properties_manager_factory.h" |
| 40 #include "ios/chrome/browser/notification_promo.h" | 40 #include "ios/chrome/browser/notification_promo.h" |
| 41 #include "ios/chrome/browser/pref_names.h" | 41 #include "ios/chrome/browser/pref_names.h" |
| 42 #include "ios/chrome/browser/pref_names.h" |
| 42 #include "ios/chrome/browser/signin/signin_manager_factory.h" | 43 #include "ios/chrome/browser/signin/signin_manager_factory.h" |
| 43 #include "ios/public/provider/chrome/browser/chrome_browser_provider.h" | 44 #include "ios/public/provider/chrome/browser/chrome_browser_provider.h" |
| 44 #include "ui/base/l10n/l10n_util.h" | 45 #include "ui/base/l10n/l10n_util.h" |
| 45 | 46 |
| 46 void RegisterLocalStatePrefs(PrefRegistrySimple* registry) { | 47 void RegisterLocalStatePrefs(PrefRegistrySimple* registry) { |
| 47 BrowserStateInfoCache::RegisterPrefs(registry); | 48 BrowserStateInfoCache::RegisterPrefs(registry); |
| 48 flags_ui::PrefServiceFlagsStorage::RegisterPrefs(registry); | 49 flags_ui::PrefServiceFlagsStorage::RegisterPrefs(registry); |
| 49 gcm::GCMChannelStatusSyncer::RegisterPrefs(registry); | 50 gcm::GCMChannelStatusSyncer::RegisterPrefs(registry); |
| 50 ios::SigninManagerFactory::RegisterPrefs(registry); | 51 ios::SigninManagerFactory::RegisterPrefs(registry); |
| 51 IOSChromeMetricsServiceClient::RegisterPrefs(registry); | 52 IOSChromeMetricsServiceClient::RegisterPrefs(registry); |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 } | 140 } |
| 140 | 141 |
| 141 // This method should be periodically pruned of year+ old migrations. | 142 // This method should be periodically pruned of year+ old migrations. |
| 142 void MigrateObsoleteBrowserStatePrefs(PrefService* prefs) { | 143 void MigrateObsoleteBrowserStatePrefs(PrefService* prefs) { |
| 143 // Added 07/2014. | 144 // Added 07/2014. |
| 144 translate::TranslatePrefs::MigrateUserPrefs(prefs, prefs::kAcceptLanguages); | 145 translate::TranslatePrefs::MigrateUserPrefs(prefs, prefs::kAcceptLanguages); |
| 145 | 146 |
| 146 // Added 08/2015. | 147 // Added 08/2015. |
| 147 prefs->ClearPref(::prefs::kSigninSharedAuthenticationUserId); | 148 prefs->ClearPref(::prefs::kSigninSharedAuthenticationUserId); |
| 148 } | 149 } |
| OLD | NEW |