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

Side by Side Diff: chrome/common/pref_names.cc

Issue 2075023002: UI Changes to support clearing EME/CDM data (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: changes Created 4 years, 6 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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/common/pref_names.h" 5 #include "chrome/common/pref_names.h"
6 6
7 #include "base/macros.h" 7 #include "base/macros.h"
8 #include "build/build_config.h" 8 #include "build/build_config.h"
9 #include "chrome/common/pref_font_webkit_names.h" 9 #include "chrome/common/pref_font_webkit_names.h"
10 10
(...skipping 872 matching lines...) Expand 10 before | Expand all | Expand 10 after
883 const char kRecentlySelectedEncoding[] = "profile.recently_selected_encodings"; 883 const char kRecentlySelectedEncoding[] = "profile.recently_selected_encodings";
884 884
885 // Clear Browsing Data dialog preferences. 885 // Clear Browsing Data dialog preferences.
886 const char kDeleteBrowsingHistory[] = "browser.clear_data.browsing_history"; 886 const char kDeleteBrowsingHistory[] = "browser.clear_data.browsing_history";
887 const char kDeleteDownloadHistory[] = "browser.clear_data.download_history"; 887 const char kDeleteDownloadHistory[] = "browser.clear_data.download_history";
888 const char kDeleteCache[] = "browser.clear_data.cache"; 888 const char kDeleteCache[] = "browser.clear_data.cache";
889 const char kDeleteCookies[] = "browser.clear_data.cookies"; 889 const char kDeleteCookies[] = "browser.clear_data.cookies";
890 const char kDeletePasswords[] = "browser.clear_data.passwords"; 890 const char kDeletePasswords[] = "browser.clear_data.passwords";
891 const char kDeleteFormData[] = "browser.clear_data.form_data"; 891 const char kDeleteFormData[] = "browser.clear_data.form_data";
892 const char kDeleteHostedAppsData[] = "browser.clear_data.hosted_apps_data"; 892 const char kDeleteHostedAppsData[] = "browser.clear_data.hosted_apps_data";
893 const char kDeauthorizeContentLicenses[] = 893 const char kDeleteMediaLicenses[] = "browser.clear_data.media_licenses";
msramek 2016/06/27 14:27:33 Note that you're replacing the preference without
jrummell 2016/06/28 01:16:48 Acknowledged.
894 "browser.clear_data.content_licenses";
895 const char kDeleteTimePeriod[] = "browser.clear_data.time_period"; 894 const char kDeleteTimePeriod[] = "browser.clear_data.time_period";
896 const char kLastClearBrowsingDataTime[] = 895 const char kLastClearBrowsingDataTime[] =
897 "browser.last_clear_browsing_data_time"; 896 "browser.last_clear_browsing_data_time";
898 const char kClearBrowsingDataHistoryNoticeShownTimes[] = 897 const char kClearBrowsingDataHistoryNoticeShownTimes[] =
899 "browser.clear_data.history_notice_shown_times"; 898 "browser.clear_data.history_notice_shown_times";
900 899
901 // Boolean pref to define the default values for using spellchecker. 900 // Boolean pref to define the default values for using spellchecker.
902 const char kEnableContinuousSpellcheck[] = "browser.enable_spellchecking"; 901 const char kEnableContinuousSpellcheck[] = "browser.enable_spellchecking";
903 902
904 // Boolean pref to define the default setting for "block offensive words". 903 // Boolean pref to define the default setting for "block offensive words".
(...skipping 1315 matching lines...) Expand 10 before | Expand all | Expand 10 after
2220 const char kMediaRouterEnableCloudServices[] = 2219 const char kMediaRouterEnableCloudServices[] =
2221 "media_router.cloudservices.enabled"; 2220 "media_router.cloudservices.enabled";
2222 #endif // defined(GOOGLE_CHROME_BUILD) 2221 #endif // defined(GOOGLE_CHROME_BUILD)
2223 // Whether or not the Media Router first run flow has been acknowledged by the 2222 // Whether or not the Media Router first run flow has been acknowledged by the
2224 // user. 2223 // user.
2225 const char kMediaRouterFirstRunFlowAcknowledged[] = 2224 const char kMediaRouterFirstRunFlowAcknowledged[] =
2226 "media_router.firstrunflow.acknowledged"; 2225 "media_router.firstrunflow.acknowledged";
2227 #endif 2226 #endif
2228 2227
2229 } // namespace prefs 2228 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698