Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(644)

Side by Side Diff: chrome/browser/prefs/browser_prefs.cc

Issue 2293373002: Remove unused prefs/api/resource for setPageEncoding (Closed)
Patch Set: comments Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 profile_prefs->ClearPref(prefs::kWebKitUsesUniversalDetector);
Lei Zhang 2016/09/06 20:44:53 It's September. :)
Jinsuk Kim 2016/09/06 21:19:39 Still living in the (not-so-distant) past..
751 } 752 }
752 753
753 } // namespace chrome 754 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698