| 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 884 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 895 // Boolean controlling whether history saving is disabled. | 895 // Boolean controlling whether history saving is disabled. |
| 896 const char kSavingBrowserHistoryDisabled[] = "history.saving_disabled"; | 896 const char kSavingBrowserHistoryDisabled[] = "history.saving_disabled"; |
| 897 | 897 |
| 898 // Boolean controlling whether deleting browsing and download history is | 898 // Boolean controlling whether deleting browsing and download history is |
| 899 // permitted. | 899 // permitted. |
| 900 const char kAllowDeletingBrowserHistory[] = "history.deleting_enabled"; | 900 const char kAllowDeletingBrowserHistory[] = "history.deleting_enabled"; |
| 901 | 901 |
| 902 // Boolean controlling whether SafeSearch is mandatory for Google Web Searches. | 902 // Boolean controlling whether SafeSearch is mandatory for Google Web Searches. |
| 903 const char kForceSafeSearch[] = "settings.force_safesearch"; | 903 const char kForceSafeSearch[] = "settings.force_safesearch"; |
| 904 | 904 |
| 905 // Boolean controlling whether History is recorded and synced for |
| 906 // supervised users. |
| 907 const char kRecordHistory[] = "settings.history_recorded"; |
| 908 |
| 905 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) | 909 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) |
| 906 // Linux specific preference on whether we should match the system theme. | 910 // Linux specific preference on whether we should match the system theme. |
| 907 const char kUsesSystemTheme[] = "extensions.theme.use_system"; | 911 const char kUsesSystemTheme[] = "extensions.theme.use_system"; |
| 908 #endif | 912 #endif |
| 909 const char kCurrentThemePackFilename[] = "extensions.theme.pack"; | 913 const char kCurrentThemePackFilename[] = "extensions.theme.pack"; |
| 910 const char kCurrentThemeID[] = "extensions.theme.id"; | 914 const char kCurrentThemeID[] = "extensions.theme.id"; |
| 911 const char kCurrentThemeImages[] = "extensions.theme.images"; | 915 const char kCurrentThemeImages[] = "extensions.theme.images"; |
| 912 const char kCurrentThemeColors[] = "extensions.theme.colors"; | 916 const char kCurrentThemeColors[] = "extensions.theme.colors"; |
| 913 const char kCurrentThemeTints[] = "extensions.theme.tints"; | 917 const char kCurrentThemeTints[] = "extensions.theme.tints"; |
| 914 const char kCurrentThemeDisplayProperties[] = "extensions.theme.properties"; | 918 const char kCurrentThemeDisplayProperties[] = "extensions.theme.properties"; |
| (...skipping 1425 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2340 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; | 2344 const char kPartnerBookmarkMappings[] = "partnerbookmarks.mappings"; |
| 2341 #endif | 2345 #endif |
| 2342 | 2346 |
| 2343 // Whether DNS Quick Check is disabled in proxy resolution. | 2347 // Whether DNS Quick Check is disabled in proxy resolution. |
| 2344 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; | 2348 const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
| 2345 | 2349 |
| 2346 // Whether Guest Mode is enabled within the browser. | 2350 // Whether Guest Mode is enabled within the browser. |
| 2347 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled"; | 2351 const char kBrowserGuestModeEnabled[] = "profile.browser_guest_enabled"; |
| 2348 | 2352 |
| 2349 } // namespace prefs | 2353 } // namespace prefs |
| OLD | NEW |