OLD | NEW |
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/basictypes.h" | 7 #include "base/basictypes.h" |
8 #include "chrome/common/pref_font_webkit_names.h" | 8 #include "chrome/common/pref_font_webkit_names.h" |
9 | 9 |
10 namespace prefs { | 10 namespace prefs { |
(...skipping 873 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
884 // Boolean controlling whether history saving is disabled. | 884 // Boolean controlling whether history saving is disabled. |
885 const char kSavingBrowserHistoryDisabled[] = "history.saving_disabled"; | 885 const char kSavingBrowserHistoryDisabled[] = "history.saving_disabled"; |
886 | 886 |
887 // Boolean controlling whether deleting browsing and download history is | 887 // Boolean controlling whether deleting browsing and download history is |
888 // permitted. | 888 // permitted. |
889 const char kAllowDeletingBrowserHistory[] = "history.deleting_enabled"; | 889 const char kAllowDeletingBrowserHistory[] = "history.deleting_enabled"; |
890 | 890 |
891 // Boolean controlling whether SafeSearch is mandatory for Google Web Searches. | 891 // Boolean controlling whether SafeSearch is mandatory for Google Web Searches. |
892 const char kForceSafeSearch[] = "settings.force_safesearch"; | 892 const char kForceSafeSearch[] = "settings.force_safesearch"; |
893 | 893 |
| 894 // Boolean controlling whether History is recorded and synced for |
| 895 // supervised users. |
| 896 const char kRecordHistory[] = "settings.history_recorded"; |
| 897 |
894 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) | 898 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) |
895 // Linux specific preference on whether we should match the system theme. | 899 // Linux specific preference on whether we should match the system theme. |
896 const char kUsesSystemTheme[] = "extensions.theme.use_system"; | 900 const char kUsesSystemTheme[] = "extensions.theme.use_system"; |
897 #endif | 901 #endif |
898 const char kCurrentThemePackFilename[] = "extensions.theme.pack"; | 902 const char kCurrentThemePackFilename[] = "extensions.theme.pack"; |
899 const char kCurrentThemeID[] = "extensions.theme.id"; | 903 const char kCurrentThemeID[] = "extensions.theme.id"; |
900 const char kCurrentThemeImages[] = "extensions.theme.images"; | 904 const char kCurrentThemeImages[] = "extensions.theme.images"; |
901 const char kCurrentThemeColors[] = "extensions.theme.colors"; | 905 const char kCurrentThemeColors[] = "extensions.theme.colors"; |
902 const char kCurrentThemeTints[] = "extensions.theme.tints"; | 906 const char kCurrentThemeTints[] = "extensions.theme.tints"; |
903 const char kCurrentThemeDisplayProperties[] = "extensions.theme.properties"; | 907 const char kCurrentThemeDisplayProperties[] = "extensions.theme.properties"; |
(...skipping 1424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2328 // Whether DNS Quick Check is disabled in proxy resolution. | 2332 // Whether DNS Quick Check is disabled in proxy resolution. |
2329 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2333 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
2330 | 2334 |
2331 // Whether Guest Mode is enabled within the browser. | 2335 // Whether Guest Mode is enabled within the browser. |
2332 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled"; | 2336 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled"; |
2333 | 2337 |
2334 // Whether Adding a new Person is enabled within the user manager. | 2338 // Whether Adding a new Person is enabled within the user manager. |
2335 const char kBrowserAddPersonEnabled[] = "profile.add_person_enabled"; | 2339 const char kBrowserAddPersonEnabled[] = "profile.add_person_enabled"; |
2336 | 2340 |
2337 } // namespace prefs | 2341 } // namespace prefs |
OLD | NEW |