OLD | NEW |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 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 "chrome/browser/prefs/browser_prefs.h" | 5 #include "chrome/browser/prefs/browser_prefs.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "base/files/file_util.h" | 9 #include "base/files/file_util.h" |
10 #include "base/metrics/histogram_macros.h" | 10 #include "base/metrics/histogram_macros.h" |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 #include "components/policy/core/common/policy_statistics_collector.h" | 86 #include "components/policy/core/common/policy_statistics_collector.h" |
87 #include "components/pref_registry/pref_registry_syncable.h" | 87 #include "components/pref_registry/pref_registry_syncable.h" |
88 #include "components/prefs/pref_registry_simple.h" | 88 #include "components/prefs/pref_registry_simple.h" |
89 #include "components/prefs/pref_service.h" | 89 #include "components/prefs/pref_service.h" |
90 #include "components/proxy_config/pref_proxy_config_tracker_impl.h" | 90 #include "components/proxy_config/pref_proxy_config_tracker_impl.h" |
91 #include "components/rappor/rappor_service.h" | 91 #include "components/rappor/rappor_service.h" |
92 #include "components/search_engines/template_url_prepopulate_data.h" | 92 #include "components/search_engines/template_url_prepopulate_data.h" |
93 #include "components/ssl_config/ssl_config_service_manager.h" | 93 #include "components/ssl_config/ssl_config_service_manager.h" |
94 #include "components/startup_metric_utils/browser/startup_metric_utils.h" | 94 #include "components/startup_metric_utils/browser/startup_metric_utils.h" |
95 #include "components/subresource_filter/core/browser/ruleset_service.h" | 95 #include "components/subresource_filter/core/browser/ruleset_service.h" |
96 #include "components/sync_driver/sync_prefs.h" | 96 #include "components/sync/driver/sync_prefs.h" |
97 #include "components/syncable_prefs/pref_service_syncable.h" | 97 #include "components/syncable_prefs/pref_service_syncable.h" |
98 #include "components/translate/core/browser/translate_prefs.h" | 98 #include "components/translate/core/browser/translate_prefs.h" |
99 #include "components/update_client/update_client.h" | 99 #include "components/update_client/update_client.h" |
100 #include "components/variations/service/variations_service.h" | 100 #include "components/variations/service/variations_service.h" |
101 #include "components/web_resource/promo_resource_service.h" | 101 #include "components/web_resource/promo_resource_service.h" |
102 #include "content/public/browser/browser_thread.h" | 102 #include "content/public/browser/browser_thread.h" |
103 #include "content/public/browser/render_process_host.h" | 103 #include "content/public/browser/render_process_host.h" |
104 #include "net/http/http_server_properties_manager.h" | 104 #include "net/http/http_server_properties_manager.h" |
105 | 105 |
106 #if BUILDFLAG(ENABLE_BACKGROUND) | 106 #if BUILDFLAG(ENABLE_BACKGROUND) |
(...skipping 628 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
735 // Added 5/2016. | 735 // Added 5/2016. |
736 profile_prefs->ClearPref(kDesktopSearchRedirectionInfobarShownPref); | 736 profile_prefs->ClearPref(kDesktopSearchRedirectionInfobarShownPref); |
737 | 737 |
738 // Added 7/2016. | 738 // Added 7/2016. |
739 DeleteWebRTCIdentityStoreDB(profile); | 739 DeleteWebRTCIdentityStoreDB(profile); |
740 profile_prefs->ClearPref(kNetworkPredictionEnabled); | 740 profile_prefs->ClearPref(kNetworkPredictionEnabled); |
741 profile_prefs->ClearPref(kDisableSpdy); | 741 profile_prefs->ClearPref(kDisableSpdy); |
742 } | 742 } |
743 | 743 |
744 } // namespace chrome | 744 } // namespace chrome |
OLD | NEW |