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 730 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
741 profile_prefs->ClearPref(kDesktopSearchRedirectionInfobarShownPref); | 741 profile_prefs->ClearPref(kDesktopSearchRedirectionInfobarShownPref); |
742 | 742 |
743 // Added 7/2016. | 743 // Added 7/2016. |
744 DeleteWebRTCIdentityStoreDB(profile); | 744 DeleteWebRTCIdentityStoreDB(profile); |
745 profile_prefs->ClearPref(kNetworkPredictionEnabled); | 745 profile_prefs->ClearPref(kNetworkPredictionEnabled); |
746 profile_prefs->ClearPref(kDisableSpdy); | 746 profile_prefs->ClearPref(kDisableSpdy); |
747 | 747 |
748 // Added 8/2016. | 748 // Added 8/2016. |
749 profile_prefs->ClearPref(prefs::kStaticEncodings); | 749 profile_prefs->ClearPref(prefs::kStaticEncodings); |
750 profile_prefs->ClearPref(prefs::kRecentlySelectedEncoding); | 750 profile_prefs->ClearPref(prefs::kRecentlySelectedEncoding); |
| 751 |
| 752 // Added 9/2016. |
| 753 profile_prefs->ClearPref(prefs::kWebKitUsesUniversalDetector); |
751 } | 754 } |
752 | 755 |
753 } // namespace chrome | 756 } // namespace chrome |
OLD | NEW |