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

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

Issue 2084903002: Moved BrowsingDataCounter and part of BrowsingDataCounterUtils to components. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Updated Android code 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 888 matching lines...) Expand 10 before | Expand all | Expand 10 after
899 // Clear Browsing Data dialog preferences. 899 // Clear Browsing Data dialog preferences.
900 const char kDeleteBrowsingHistory[] = "browser.clear_data.browsing_history"; 900 const char kDeleteBrowsingHistory[] = "browser.clear_data.browsing_history";
901 const char kDeleteDownloadHistory[] = "browser.clear_data.download_history"; 901 const char kDeleteDownloadHistory[] = "browser.clear_data.download_history";
902 const char kDeleteCache[] = "browser.clear_data.cache"; 902 const char kDeleteCache[] = "browser.clear_data.cache";
903 const char kDeleteCookies[] = "browser.clear_data.cookies"; 903 const char kDeleteCookies[] = "browser.clear_data.cookies";
904 const char kDeletePasswords[] = "browser.clear_data.passwords"; 904 const char kDeletePasswords[] = "browser.clear_data.passwords";
905 const char kDeleteFormData[] = "browser.clear_data.form_data"; 905 const char kDeleteFormData[] = "browser.clear_data.form_data";
906 const char kDeleteHostedAppsData[] = "browser.clear_data.hosted_apps_data"; 906 const char kDeleteHostedAppsData[] = "browser.clear_data.hosted_apps_data";
907 const char kDeauthorizeContentLicenses[] = 907 const char kDeauthorizeContentLicenses[] =
908 "browser.clear_data.content_licenses"; 908 "browser.clear_data.content_licenses";
909 const char kDeleteTimePeriod[] = "browser.clear_data.time_period";
910 const char kLastClearBrowsingDataTime[] = 909 const char kLastClearBrowsingDataTime[] =
911 "browser.last_clear_browsing_data_time"; 910 "browser.last_clear_browsing_data_time";
912 const char kClearBrowsingDataHistoryNoticeShownTimes[] = 911 const char kClearBrowsingDataHistoryNoticeShownTimes[] =
913 "browser.clear_data.history_notice_shown_times"; 912 "browser.clear_data.history_notice_shown_times";
914 913
915 // Boolean pref to define the default values for using spellchecker. 914 // Boolean pref to define the default values for using spellchecker.
916 const char kEnableContinuousSpellcheck[] = "browser.enable_spellchecking"; 915 const char kEnableContinuousSpellcheck[] = "browser.enable_spellchecking";
917 916
918 // Boolean pref to define the default setting for "block offensive words". 917 // Boolean pref to define the default setting for "block offensive words".
919 // The old key value is kept to avoid unnecessary migration code. 918 // The old key value is kept to avoid unnecessary migration code.
(...skipping 1318 matching lines...) Expand 10 before | Expand all | Expand 10 after
2238 // user. 2237 // user.
2239 const char kMediaRouterFirstRunFlowAcknowledged[] = 2238 const char kMediaRouterFirstRunFlowAcknowledged[] =
2240 "media_router.firstrunflow.acknowledged"; 2239 "media_router.firstrunflow.acknowledged";
2241 #endif 2240 #endif
2242 2241
2243 // The base64-encoded representation of the public key to use to validate origin 2242 // The base64-encoded representation of the public key to use to validate origin
2244 // trial token signatures. 2243 // trial token signatures.
2245 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; 2244 const char kOriginTrialPublicKey[] = "origin_trials.public_key";
2246 2245
2247 } // namespace prefs 2246 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698