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

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

Issue 2280513002: MD History: promote menu button to show clear browsing data in narrow mode (Closed)
Patch Set: asdf Created 4 years, 4 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 912 matching lines...) Expand 10 before | Expand all | Expand 10 after
923 const char kSpeechRecognitionFilterProfanities[] = 923 const char kSpeechRecognitionFilterProfanities[] =
924 "browser.speechinput_censor_results"; 924 "browser.speechinput_censor_results";
925 925
926 // Boolean controlling whether history saving is disabled. 926 // Boolean controlling whether history saving is disabled.
927 const char kSavingBrowserHistoryDisabled[] = "history.saving_disabled"; 927 const char kSavingBrowserHistoryDisabled[] = "history.saving_disabled";
928 928
929 // Boolean controlling whether deleting browsing and download history is 929 // Boolean controlling whether deleting browsing and download history is
930 // permitted. 930 // permitted.
931 const char kAllowDeletingBrowserHistory[] = "history.deleting_enabled"; 931 const char kAllowDeletingBrowserHistory[] = "history.deleting_enabled";
932 932
933 #if !defined(OS_ANDROID) && !defined(OS_IOS)
934 // Whether the "Click here to clear your browsing data" tooltip promo has been
935 // shown on the Material Design History page.
936 const char kMdHistoryMenuPromoShown[] = "history.menu_promo_shown";
937 #endif
938
933 // Boolean controlling whether SafeSearch is mandatory for Google Web Searches. 939 // Boolean controlling whether SafeSearch is mandatory for Google Web Searches.
934 const char kForceGoogleSafeSearch[] = "settings.force_google_safesearch"; 940 const char kForceGoogleSafeSearch[] = "settings.force_google_safesearch";
935 941
936 // Boolean controlling whether Safety Mode is mandatory on YouTube. 942 // Boolean controlling whether Safety Mode is mandatory on YouTube.
937 const char kForceYouTubeSafetyMode[] = "settings.force_youtube_safety_mode"; 943 const char kForceYouTubeSafetyMode[] = "settings.force_youtube_safety_mode";
938 944
939 // Boolean controlling whether history is recorded via Session Sync 945 // Boolean controlling whether history is recorded via Session Sync
940 // (for supervised users). 946 // (for supervised users).
941 const char kForceSessionSync[] = "settings.history_recorded"; 947 const char kForceSessionSync[] = "settings.history_recorded";
942 948
(...skipping 1311 matching lines...) Expand 10 before | Expand all | Expand 10 after
2254 const char kOriginTrialPublicKey[] = "origin_trials.public_key"; 2260 const char kOriginTrialPublicKey[] = "origin_trials.public_key";
2255 2261
2256 // A list of origin trial features to disable by policy. 2262 // A list of origin trial features to disable by policy.
2257 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features"; 2263 const char kOriginTrialDisabledFeatures[] = "origin_trials.disabled_features";
2258 2264
2259 // Policy that indicates the state of updates for the binary components. 2265 // Policy that indicates the state of updates for the binary components.
2260 const char kComponentUpdatesEnabled[] = 2266 const char kComponentUpdatesEnabled[] =
2261 "component_updates.component_updates_enabled"; 2267 "component_updates.component_updates_enabled";
2262 2268
2263 } // namespace prefs 2269 } // namespace prefs
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698